-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.html
36 lines (32 loc) · 1.01 KB
/
navbar.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
<!-- ! WARNING: This page doesn't interact with anything on this website.
! It's only here to store the original code for the navbar -->
<header id="nav-menu">
<nav class="navbar">
<a id="logo" href="/">
<span id="logo-text">Pu Thavikulwat</span>
<!-- <img id="logo-img" src="img/pu_logo.png"> -->
</a>
<ul class="nav-links">
<div class="menu">
<li><a href="/">Case Studies</a></li>
<li><a href="/">Coding</a></li>
<li><a href="/">About Me</a></li>
</div>
</ul>
</nav>
<div class="navbar-mobile-container">
<nav class="navbar-top-mobile">
<a href="/">
<img id="logo-img-mobile" src="img/pu_logo.png" alt="Pu Thavi Logo">
</a>
<img id="hamburger-mobile" src="img/hamburger_menu.svg" alt="Hamburger Menu">
</nav>
<nav class="navbar-mobile">
<ul>
<li><a href="/">Case Studies</a></li>
<li><a href="/">Coding</a></li>
<li><a href="/about">About Me</a></li>
</ul>
</nav>
</div>
</header>