-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
84 lines (80 loc) · 2.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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">
</head>
<body>
<body>
<header>
<h1>Contact Us</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/#about">About <abbr title="The Little Taco Shop">LTS</abbr></a>
</li>
<li>
<a href="/#menu">Our Menu</a>
</li>
<li>
<a href="hours.html">Store Hours</a>
</li>
</ul>
</nav>
<figure>
<img src="img/tacos_close_up_400x260.png" alt="Little Taco Shop Tacos" title="Tacos ready to eat!"
width="400" height="260">
<figcaption>
Little Taco Shop Tacos
</figcaption>
</figure>
</header>
<hr>
<main>
<section>
<h2>Our Contact Form</h2>
<form action="https://httpbin.org/get" method="get">
<fieldset>
<legend>Send Us A Message</legend>
<p>
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="your name" required>
</p>
<p>
<label for="email">Email: </label>
<input type="email" name="email" id="email" placeholder="your email" required>
</p>
<p>
<label for="message">You Message: </label>
<br>
<textarea name="message" id="message"
cols="30" rows="10" placeholder="Type your message here"></textarea>
</p>
</fieldset>
<button title="submit">Submit</button>
<button title="reset">Reset</button>
</form>
</section>
<section>
<h2>Our Location</h2>
<address>
555 Taco Tempatation Lane, Suite T<br>
Kansas City, MO 55555-5555
<br><br>
Phone: <a href="tel:+5555555555">555-555-5555</a>
</address>
</section>
</main>
<hr>
<footer>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>