forked from WebDevSimplified/css-tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
29 lines (28 loc) · 928 Bytes
/
contact.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style2.css">
<script src="script2.js" defer></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tools</title>
</head>
<body>
<nav class="navbar">
<div class="brand-title"><a href="index.php">Tools</a></div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="tools.html">Tool</a></li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</nav>
</body>
</html>