-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
55 lines (55 loc) · 1.88 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Contact Us</title>
</head>
<body>
<nav name="top">
<h1>Contact Us</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html/#LTS">About LTS</a></li>
<li><a href="index.html/#menu">Our Menu</a></li>
<li><a href="hours.html">Store Hours</a></li>
</ul>
</nav>
<main>
<figure>
<img src="tacos_close_up_400x260.png" alt="tacos">
<figcaption>Little Taco Shop Tacos</figcaption>
</figure>
<h2>Our Contact Form</h2>
<form action="">
<fieldset>
<legend>Send Us A Message</legend>
<p>
<label for="">Name:<input type="text" placeholder="your name"></label>
</p>
<p></p>
<label for="">Email:<input type="text" placeholder="your email"></label>
</p>
Your Message:<br>
<textarea name="" id="" cols="50" rows="20"></textarea>
</fieldset> <br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
<h2>Our Location</h2>
<p>
<address>
555 Taco Temptation Lane, Suite T <br>
Kansas City,MO 55555-5555
</address>
</p>
<P>
Phone: <a href="tel: +555-555-5555">555-555-5555</a>
</P>
<a href="#top">Back to Top</a>
<hr>
</main>
</body>
<footer>
Copyright ©The Little Taco Shop
</footer>
</html>