-
Notifications
You must be signed in to change notification settings - Fork 566
/
menu.html
24 lines (24 loc) · 945 Bytes
/
menu.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
<div class="menu">
<div class="menu-table flex-row-space-between">
<div class="logo flex-row-center">
<a href="index.html">Project Title</a>
</div>
<a class="menu-button" tabindex="0" href="javascript:void(0)">
<img src="img/menu.png">
</a>
<div class="menu-items flex-row-center flex-item">
<a class="menu-index" href="index.html">Overview</a>
<a class="menu-widget" href="widgets.html">Widgets</a>
<a class="menu-embedding" href="embedding.html">Embedding</a>
<div class="dropdown">
<a class="dropbtn" href="empty.html">Dropdown<i class="fas fa-caret-down"></i></a>
<div class="dropdown-content">
<a href="index.html">Overview</a>
<a href="widgets.html">Widgets</a>
<a href="embedding.html">Embedding</a>
</div>
</div>
<a href="https://github.com/yenchiah/project-website-template">GitHub</a>
</div>
</div>
</div>