-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (66 loc) · 3.58 KB
/
contact.html
File metadata and controls
66 lines (66 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset = "utf-8">
<meta name = "viewport" content = "width=device-width, initial-scale=1">
<title>Rowe Bro's Comic Kingdom - Contact</title>
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<header>
<div></div>
<div class = "banner">
<h1>Rowe Bro's Comic Kingdom - Contact</h1>
</div>
</header>
<div class = "button-links">
<nav>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "events.html">Events</a></li>
<li><a href = "products-services.html">Products/Services</a></li>
<li><a href = "contact.html">Contact</a></li>
<li><a href = "about.html">About</a></li>
</ul>
</nav>
</div> <!-- button-links -->
<main>
<div class = "contact">
<h2>Contact Us</h2>
<form method = "post" action = # class = "contact-form">
<div class = "form-field">
<label><span class = "labeltext">Name: <span class = "req">*</span></span></label>
<input type = "text" id = "name" name = "name" class = "textfield" required>
</div> <!-- form-field -->
<div class = "form-field">
<label><span class = "labeltext">Phone: <span class = "req">*</span></span></label>
<input type = "phone" id = "phone" name = "phone" class = "textfield" required>
</div> <!-- form-field -->
<div class = "form-field">
<label><span class = "labeltext">Email: <span class = "req">*</span></span></label>
<input type = "email" id = "email" name = "email" class = "textfield" required>
</div> <!-- form-field -->
<label for = "talkAbout">I want to talk about...</label>
<select id = "talkAbout" name = "talkAbout">
<option value = "product-request">Are we missing something that you want stocked?</option>
<option value = "general-comment">How are we doing?</option>
<option value = "complaint">Is there something we can do better?</option>
</select>
<div class = "form-field">
<label><span class = "labeltext">Comments: <span class = "req">*</span></span></label>
<textarea id = "comments" name = "comments" rows = "2" cols = "25" required></textarea>
</div> <!-- form-field -->
<input type = "reset" value = "Reset" class = "contact-button">
<input type = "submit" value = "Submit" class = "contact-button">
</form> <!-- contact form -->
<div class = "our-info">
<br>
<p>Our Phone Number: <a href = "tel:+155586675309">(555)-867-5309</a></p>
<p>Our Email: <a href = "mailto:rowe3@comickingdom.net">rowe3@comickingdom.net</a></p>
<p>Our Address: 1234 Marigold Plaza Suite 270 Charlottesville, Virginia 22903</p>
</div>
</div> <!-- contact -->
</main>
<footer>©2025 James G. Rowe III</footer>
</body>
</html>