-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.99 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Rotary Dial Navigation</title>
<meta content="Navbar" name="description">
<meta content="Anupam, Samanta, CSS, navbar, css only, rotary, dial" name="keywords">
<meta content="Anupam Samanta" name="author">
<link crossorigin="anonymous" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
referrerpolicy="no-referrer" rel="stylesheet"/>
<link href="css/style.css" rel="stylesheet">
</head>
<body style="background-color: #2B2B2B">
<div class="navbar">
<i class="main-icon fa-solid fa-compass" onclick="this.parentNode.classList.toggle('active')"></i>
<div class="nav-container">
<a class="element" href="https://www.facebook.com/" target="_blank">
<i class="fa-brands fa-facebook"></i>
</a>
<a class="element" href="https://instagram.com/" target="_blank">
<i class="fa-brands fa-instagram"></i>
</a>
<a class="element" href="https://twitter.com/" target="_blank">
<i class="fa-brands fa-twitter"></i>
</a>
<a class="element" href="https://web.whatsapp.com/" target="_blank">
<i class="fa-brands fa-whatsapp"></i>
</a>
<a class="element" href="https://github.com/Anupam96786" target="_blank">
<i class="fa-brands fa-github"></i>
</a>
<a class="element" href="https://www.linkedin.com/in/anupam96786/" target="_blank">
<i class="fa-brands fa-linkedin"></i>
</a>
</div>
</div>
<div style="position: fixed; bottom: 0; width: 100%; display: flex; justify-content: center; color: #b4b4b4">
<p>Anupam Samanta (<a href="https://github.com/Anupam96786" style="color: #00c1ff">Anupam96786@github.com</a>)</p>
</div>
</body>
</html>