-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 853 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="main.css" type="text/css" />
<title>Document</title>
</head>
<body>
<nav class="navDefault">
<div class="dropdown">
<button>Dropdown</button>
<ul class="dropdownMenu">
<li class="dropdownItem"><a href="#" class="dropdownLink">Link</a></li>
<li class="dropdownItem"><a href="#" class="dropdownLink">Link</a></li>
<li class="dropdownItem"><a href="#" class="dropdownLink">Link</a></li>
<li class="dropdownItem"><a href="#" class="dropdownLink">Link</a></li>
</ul>
</div>
</nav>
</body>
</html>