forked from Anubhav-1020/Hacktoberfest-Beginners
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profilenav.html
49 lines (46 loc) · 1.66 KB
/
profilenav.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="stylenav.css">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My project</title>
</head>
<body>
<nav id="nav">
<ul>
<li><a href="">Home</a></li>
<li><a href="">Works</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
</ul>
<button class="icon" id="toggl">
<div class="line line1"></div>
<div class="line line2"></div>
</button>
</nav>
<div class="main-container">
<div class="container container-1">
<h1>
KIRTI BARDHAN TUNG
</h1>
<div class="text">
<ul>
<li class="li">Front End Developer</li>
<li class="li">Gammer</li>
<li class="li">Skater</li>
<li class="li">Pianinst</li>
</ul>
</div>
</div>
<div class="container container-2 active">
<img class="kirti" src="kirti.png" alt="photo">
</div>
</div>
<script src="script.js"></script>
<script src="scriptnav.js"></script>
</body>
</html>