-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (43 loc) · 1.32 KB
/
index.html
File metadata and controls
50 lines (43 loc) · 1.32 KB
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
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/ccd3ee6b59.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./style.css" />
<link rel="stylesheet" href="./media-query.css" />
<title>Mobile Navigation Menu</title>
</head>
<body>
<header>
<h3>Mobile Navigation will be visible on screen size less than 800px.</h3>
<nav>
<a href="#">Home</a>
<a href="#">HTML CSS</a>
<a href="#">JavaScript</a>
<a href="#">Contact Us</a>
<a href="#">Blogs</a>
</nav>
<div id="menu--icon" class="menu--icon">
<i class="fa fa-duotone fa-bars"></i>
</div>
</header>
<div class="display--nav">
<h3>@runthecodes</h3>
<a href="#">Home</a>
<a href="#">HTML CSS</a>
<a href="#">JavaScript</a>
<a href="#">Contact Us</a>
<a href="#">Blogs</a>
<div class="social-icons">
<p>Follow Us</p>
<i class="fa fa-brands fa-twitter"></i>
<i class="fa fa-brands fa-linkedin-in"></i>
<i class="fa fa-brands fa-discord"></i>
</div>
</div>
<!--<div class="display--nav_down, display--nav"></div>-->
<script src="./script.js"></script>
</body>
</html>