-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
62 lines (59 loc) · 2.06 KB
/
contact.html
File metadata and controls
62 lines (59 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>Contact Us - LTS</title>
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html#about">About LTS</a></li>
<li><a href="./index.html#ourmenu">Our Menu</a></li>
<li><a href="./hours.html">Store Hours</a></li>
</ul>
</nav>
<img src="./img/tacos_close_up_400x260.png" alt="Tacos and a drink"/>
<figcaption>Little Taco Shop Tacos</figcaption>
<hr/>
</header>
<main>
<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">Your Message:</label>
<br>
<textarea name="message" id="message" cols="30" rows="10"
placeholder="Type your message here"></textarea>
</p>
</fieldset>
<button type="submit">Send</button>
<button type="reset">Reset</button>
</form>
<h2>Our Location</h2>
<address> 555 Taco Temptation Lane, Suite T <br>
Kansas City, MO 55555-5555 </address>
<p>Phone: <a href="tel:+5555555555">555-555-5555</a></p>
</main>
<footer>
<hr/>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>