-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (41 loc) · 1.54 KB
/
contact.html
File metadata and controls
45 lines (41 loc) · 1.54 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
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&family=Oswald&display=swap');
</style>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<!-- Navigation Menu -->
<nav id="nav-list">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<button type="button" onclick="toggleMenu(event)">=</button>
</header>
<h1>Contact Us</h1>
<form id="contactForm">
<label for="fname">First name:</label><br />
<input type="text" id="fname" name="fname" value="" required><br />
<label for="lname">Last name:</label><br />
<input type="text" id="lname" name="lname" value="" required><br />
<label for="email">Email:</label><br />
<input type="text" id="email" name="email" value="" required><br />
<label for="phone">Phone:</label><br />
<input type="text" id="phone" name="phone" value="" required><br />
<label for="message">Message:</label><br />
<textarea rows="5" cols="30" id="message" name="message"></textarea><br />
<br />
<input type="submit" value="Submit">
<p class="error"></p>
</form>
<script src="script.js"></script>
</body>
</html>