-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
93 lines (87 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Dave Gray">
<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="css/style.css">
<script src="js/main.js" defer></script>
</head>
<body>
<header class="header">
<h1 class="header__h1">Little Taco Shop</h1>
<nav class="header__nav">
<ul class="header__ul">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="index.html#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="img/tacos_close_up_1000x649.png" alt="Little Taco Shop Tacos" title="Tacos ready to eat!"
width="1000" height="649">
<figcaption class="offscreen">
Little Taco Shop Tacos
</figcaption>
</figure>
</section>
<main class="main">
<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>
<hr>
<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 class="contact__label" for="name">Name:</label>
<input class="contact__input" type="text" name="name" id="name" placeholder="your name"
required>
</p>
<p class="contact__p">
<label class="contact__label" for="email">Email:</label>
<input class="contact__input" type="email" name="email" id="email" placeholder="your email"
required>
</p>
<p class="contact__p">
<label class="contact__label" for="message">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 class="contact__button" type="submit">Send</button>
<button class="contact__button" type="reset">Reset</button>
</form>
</article>
</main>
<footer class="footer">
<p>
<span class="nowrap">Copyright © <time id="year"></time></span>
<span class="nowrap">Little Taco Shop</span>
</p>
</footer>
</body>
</html>