-
Notifications
You must be signed in to change notification settings - Fork 0
/
drawer.html
41 lines (41 loc) · 1.35 KB
/
drawer.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Barlow:400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<title>Drawer</title>
</head>
<body>
<input id="hamburger-icon" type="checkbox"/>
<label for="hamburger-icon">
<span></span>
<span></span>
<span></span>
<span></span>
</label>
<nav>
<div class="drawer-title">
<h1>Drawer</h1>
</div>
<div class="drawer-section">
<ul>
<li class="active-link"><i class="material-icons">home</i>Link 1</li>
<li><i class="material-icons">add</i>Link 2</li>
<li><i class="material-icons">format_list_bulleted</i>Link 3</li>
<li><i class="material-icons">settings</i>Link 4</li>
</ul>
</div>
<div class="drawer-section">
<ul>
<li><i class="material-icons">home</i>Link 1</li>
<li><i class="material-icons">add</i>Link 2</li>
<li><i class="material-icons">format_list_bulleted</i>Link 3</li>
<li><i class="material-icons">settings</i>Link 4</li>
</ul>
</div>
</nav>
</body>
</html>