-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav.html
16 lines (16 loc) · 917 Bytes
/
nav.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- NAVIGATION BAR CODE -->
<div class="header">
<header>
<table style="background-image: url('/assets/images/banner.png')">
<tr>
<td><p style="color: black"><b>Sean's Website</b></p></td>
<td><button class="table-button" onclick = "window.location.href='/index.html';">Home</button></td>
<td><button class="table-button" onclick = "window.location.href='/about.html';">About</button></td>
<td><button class="table-button" onclick = "window.location.href='/blog.html';">Blog</button></td>
<td><button class="table-button" onclick = "window.location.href='/projects.html';">Projects</button></td>
<td><button class="table-button" onclick = "window.location.href='/rss.html';">RSS</button></td>
<td><button class="table-button" onclick = "window.location.href='/downloads.html';">Downloads</button></td>
</tr>
</table>
</header>
</div>