-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
54 lines (54 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
</head>
<body>
<header>
<h1>Contact Us</h1>
<div>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="home.html">About LTS</a></li>
<li><a href="home.html">Our Menu</a></li>
<li><a href="hours.html">Store Hourse</a></li>
</ul>
</div>
<img src="dosa.jpg" alt="Dosa image">
<p><b>Lttle Taco Shop Tacos</b> 👨🍳</p>
</header>
<hr>
<main>
<h4>Send Us A Message</h4>
<div>
<span>Name: <input type="name" placeholder="Your Name"></span>
<br>
<br>
<span>Email: <input type="email" placeholder="Your Email"></span>
<br>
<br>
<span>Your message
<br>
<br>
<textarea rows="5" cols="50" type="text" placeholder="Type your message here" > </textarea>
</span>
</div>
<hr>
<div>
<button>Send</button>
<button>Reset</button>
</div>
<h2>Our Location</h2>
<p>555 Taco Temptation Lame, suite T</p>
<p>Kansas City, MO 55555-5555</p>
<p>Phone: <a href="tel:55555-5555">55555-5555</a></p>
<a href="contact.html">Back to top</a>
<hr>
</main>
<footer>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>