-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
80 lines (76 loc) · 2.17 KB
/
contactus.html
File metadata and controls
80 lines (76 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<!--
Author: Kylie Drawdy
Date: 10/21/2024
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Contact Us!</title>
<link rel="stylesheet" href="styles/styles.css" />
<script src="js/contactus.js" defer></script>
</head>
<body>
<header>
<h1>
Contact Us!
</h1>
</header>
<nav>
<a href="websiteExample.html">Home</a>
<a href="contactus.html">Contact Us</a>
<a href="productquote.html">Product Quote</a>
<a href="productinfo.html">Product Info</a>
</nav>
<article>
<h2>Contact Information</h2>
<form>
<fieldset id="contactInfo">
<label for="firstNameInput">
First Name
<input type="text" id="firstName" name="firstName" />
</label>
<label for="lastNameInput">
Last Name
<input type="text" id="lastName" name="lastName" />
</label>
<label for="addressInput">
Address
<input type="text" id="address" name="address" />
</label>
<label for="cityInput">
City
<input type="text" id="city" name="city" />
</label>
<label for="stateInput">
State
<input type="text" id="state" name="state" />
</label>
<label for="zipInput">
ZIP Code
<input type="text" id="zip" name="zip" />
</label>
<label for="phoneInput">
Phone
<input type="text" id="phone" name="phone" />
</label>
<label for="emailInput">
Email
<input type="text" id="email" name="email" />
</label>
</fieldset>
<fieldset id="radioButton">
<p>Would you like to join our mailing list?</p>
<input type="radio" id="yes" name="mailingList" value="yes">
<label for="yes">Yes</label><br>
<input type="radio" id="no" name="mailingList" value="no">
<label for="no">No</label><br>
</fieldset>
<fieldset id="submitButton">
<input type="button" id="submit" value="Submit" />
</fieldset>
</form>
</article>
</body>
</html>