forked from devtipsdaily/animated-tab-bar-menu-indicator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (37 loc) · 1.13 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
<!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" />
<link rel="stylesheet" href="style.css" />
<link
href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css"
rel="stylesheet"
/>
<title>Animated Tab Bar Menu Indicator</title>
</head>
<body>
<nav class="nav">
<ul class="nav__links">
<li class="nav__link active">
<a href="#"><i class="bx bx-home-alt-2"></i></a>
</li>
<li class="nav__link">
<a href="#"><i class="bx bx-heart"></i></a>
</li>
<li class="nav__link">
<a href="#"><i class="bx bx-plus-circle"></i></a>
</li>
<li class="nav__link">
<a href="#"><i class="bx bx-user"></i></a>
</li>
<li class="nav__link">
<a href="#"><i class="bx bx-bell"></i></a>
</li>
<div class="nav__light"></div>
</ul>
</nav>
<script src="app.js"></script>
</body>
</html>