-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.php
37 lines (37 loc) · 1.32 KB
/
navbar.php
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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<link rel="stylesheet" href="navbar.css">
<title>HTML5 Navigation Bar</title>
</head>
<body>
<div>
<nav>
<ul>
<li style="float: left;"><a href="http://stevewright.nz/">Home</a></li>
<li style="float: left;"><a href="http://stevewright.nz/genealogy.php">Genealogy</a></li>
<li style="float: left;"><a href="http://blog.stevewright.nz/">Blog</a></li>
<li style="float: left;"><a href="http://blog.stevewright.nz/about.php">About</a></li>
<li style="float: left;"><a href="http://stevewright.nz/contact.php">Contact Us</a></li>
<li style="float: right;">
<form method="get" action="http://www.google.com/search">
<table class="search">
<th>
<input type="text" class="rounded" name="q" size="25" maxlength="150" value="" />
<input type="submit" class="rounded" value="Search" />
</th>
<tr><td>
<div class="radio" >
<input type="radio" name="sitesearch" value="" checked /> The Web
<input type="radio" name="sitesearch" value="stevewright.nz" /> stevewright.nz
<input type="radio" name="sitesearch" value="blog.stevewright.nz" /> blog.stevewright.nz
</div>
</td></tr>
</table>
</form></a></li>
</ul>
</nav>
</div>
</body>
</html>