-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
41 lines (38 loc) · 1.63 KB
/
header.html
File metadata and controls
41 lines (38 loc) · 1.63 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
<!DOCTYPE html>
<html>
<body>
<div class="container-fluid">
<div class="row">
<div class="col p-0">
<div class="header">
<a href="index.html"><h2>Michael Lam</h2>
</a>
<div id="navLinks" class="d-none d-lg-block d-md-none">
<table id="navBarTable">
<tbody>
<th><a href="index.html#module-title">Modules</a></th>
<th><a href="khanacademy.html">Khan Academy</a></th>
<th><a href="freecodecamp.html">freeCodeCamp</a></th>
<th><a href="https://github.com/michael-lam8" target="_blank">GitHub</a></th>
</tbody>
</table>
</div>
<div class="d-none d-block d-lg-none">
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="header-dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" onclick="">Menu</button>
<div class="dropdown-menu dropdown-menu-right shadow-lg" aria-labelledby="header-dropdown">
<a href="index.html#module-title" class="dropdown-item">Modules</a>
<div class="dropdown-divider"></div>
<a href="khanacademy.html" class="dropdown-item">Khan Academy</a>
<a href="freecodecamp.html" class="dropdown-item">freeCodeCamp</a>
<div class="dropdown-divider"></div>
<a href="https://github.com/michael-lam8" class="dropdown-item" target="_blank">GitHub</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>