-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
96 lines (86 loc) · 3.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Dave Gray">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Contact information for The Little Taco Shop">
<title>Contact Us - LTS</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1 class="header__h1">Contact Us</h1>
<nav class="header__nav">
<ul class="header__ul">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/#menu">Menu</a>
</li>
<li>
<a href="hours.html">Hours</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<figure>
<img src="taco4.jpg" alt="Little Taco Shop Tacos" title="Tacos ready to eat!"
width="1000" height="667">
<figcaption class="offscreen">
Little Taco Shop Tacos
</figcaption>
</figure>
</section>
<main class="main contact">
<article class="main__article">
<h2>Our Location</h2>
<address>
555 Taco Temptation Lane, Suite T<br>
Kansas City, MO 55555-5555
<br><br>
Phone: <a href="tel:+5555555555">555-555-5555</a>
</address>
</article>
<br>
<hr>
<br>
<article class="main__article contact">
<h2 class="contact__h2">Our Contact Form</h2>
<form action="https://httpbin.org/get" method="get" class="contact__form">
<fieldset class="contact__fieldset">
<legend class="offscreen">Send Us A Message</legend>
<p class="contact__p">
<label for="name" class="contact__label">Name:</label>
<input type="text" name="name" id="name" placeholder="your name" required class="contact__input">
</p>
<p class="contact__p">
<label for="email" class="contact__label">Email:</label>
<input type="email" name="email" id="email" placeholder="your email" required class="contact__input">
</p>
<p class="contact__p">
<label for="message" class="contact__label">Your Message:</label>
<br>
<textarea class="contact__textarea" name="message" id="message" cols="30" rows="10"
placeholder="Type your message here"></textarea>
</p>
</fieldset>
<button type="submit" class="contact__button side__margin">Send</button>
<button type="reset" class="contact__button">Reset</button>
</form>
</article>
</main>
<footer class="footer">
<p>
<span class="nowrap">Copyright ©</span>
<span class="nowrap">The Taco Shell</span>
</p>
</footer>
</body>
</html>