-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 1.69 KB
/
index.html
File metadata and controls
52 lines (51 loc) · 1.69 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
51
52
<!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" />
<!-- Google fonts icon cdn link -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Round"
rel="stylesheet"
/>
<!-- custom css -->
<link rel="stylesheet" href="./style.css" />
<title>Project 1 - Navigation Bar</title>
</head>
<body>
<nav>
<div class="container">
<div class="brand-section">
<div class="brand-logo">
<span class="material-icons-round">store</span>
</div>
<div class="brand-title">
<a href="#"><h2>Brand Name</h2> </a>
</div>
</div>
<div class="main-menu">
<a href="#">Menu 1</a>
<a href="#">Menu 2</a>
<a href="#">Menu 3</a>
</div>
<div class="right-menu">
<a href="#">Menu 4</a>
<a href="#">Menu 5</a>
<button class="dropdown">
<span class="material-icons-round">account_circle</span>
<div class="dropdown-items">
<ul class="dropdown-items-ul">
<li class="dropdown-item-li"><a href="#">Profile</a></li>
<li class="dropdown-item-li"><a href="#">Setting</a></li>
<li class="dropdown-item-li"><a href="#">Orders</a></li>
<hr class="divider" />
<li class="dropdown-item-li"><a href="#">Logout</a></li>
</ul>
</div>
</button>
</div>
</div>
</nav>
</body>
</html>