-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
72 lines (62 loc) · 2.36 KB
/
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
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
<!DOCTYPE html>
<!--
Author: Keller Tree
Date: 11/14/2023
-->
<html lang="en">
<head>
<title>Contact Us</title>
<meta charset="utf-8">
<link rel="stylesheet" href="styleSheets/main.css">
<link rel="stylesheet" href="styleSheets/contact.css">
</head>
<body>
<header>
<img src="images/crownCoffeeLogo_white.png" alt="Crown Coffee Logo">
<h1>Contact Us</h1>
<nav>
<a href="index.html">Home</a> •
<a href="coffee.html">Our Coffee</a> •
<a href="coffeeGuide.html">Coffee Guide</a> •
<a href="menu.html">Menu</a> •
<a href="club.html">Club</a> •
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section>
<h2>Contact Form</h2>
<form action="http://itins3.madisoncollege.edu/echo.php" method="post">
<label for="name">Name <span>(required)</span>:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email <span>(required)</span>:</label>
<input type="email" id="email" name="email" required>
<label for="phone">Phone:</label>
<input type="tel" id="phone" name="phone">
<label for="subject">Subject line <span>(required)</span>:</label>
<input type="text" id="subject" name="subject" required>
<label for="message">Message <span>(required)</span>:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<button type="submit">Submit</button>
</form>
</section>
<section>
<h2>Hours</h2>
<p>Mon - Fri: 5:30am to 8:00pm</p>
<p>Sat: 6:30am to 6:00pm</p>
<p>Sun: 7:30am to 2:00pm</p>
</section>
<section>
<h2>Location</h2>
<p>641 Marketplace Dr. Madison, WI</p>
<p>Call <a href="tel:16084420452">608-442-0452</a></p>
</section>
</main>
<footer>
<a href="contact.html">Hours and Locations</a>
<address>
<p><em>Developed by:</em><a href="mailto:[email protected]">Keller Tree</a></p>
</address>
</footer>
</body>
</html>