-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (44 loc) · 1.68 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
48
49
<!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">
<title>Bottom Navigation</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<div id="page" class="site">
<div class="container">
<nav>
<ul>
<li class="active"><a href="#home"><span>Home</span><i class="ri-home-2-line"></i></a></li>
<li><a href="#drop"><span>Drop</span><i class="ri-contrast-drop-line"></i></a></li>
<li><a href="#store"><span>Store</span><i class="ri-store-2-line"></i><span class="label sale">sale</span></a></li>
<li><a href="#wishlist"><span>Wishlist</span><i class="ri-hearts-line"></i></a></li>
<li><a href="#cart" ><span>Cart</span><i class="ri-shopping-cart-2-line"></i><span class="label cart">0</span></a></li>
</ul>
</nav>
<section>
<div id="home">
<h2>Home</h2>
</div>
<div id="drop">
<h2>Drop</h2>
</div>
<div id="store">
<h2>Store</h2>
</div>
<div id="wishlist">
<h2>Wishlist</h2>
</div>
<div id="cart">
<h2>Cart</h2>
</div>
</section>
</div>
</div>
<script src="app.js"></script>
</body>
</html>