-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BeatKit</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
</head>
<body>
<nav>
<div class="nav-left">
<div class="logo">
<img
src="https://demo.moxcreative.com/beatkit/wp-content/uploads/sites/21/2021/04/Logo-kit.png"
alt=""
class="logo-img"
/>
<h1>beatkit</h1>
</div>
</div>
<div class="nav-list">
<ul>
<li>Home</li>
<li>About Us</li>
<li>Tour</li>
<li>Album</li>
<li>Contact</li>
<li>Page</li>
</ul>
</div>
<div class="nav-right">
<i class="bi bi-youtube"></i>
<i class="bi bi-soundwave"></i>
<i class="bi bi-spotify"></i>
<i class="bi bi-music-note-beamed"></i>
</div>
</nav>
</body>
</html>