-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
71 lines (65 loc) · 2.28 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Gurvansh Gupta">
<meta name="description" content="Contact information for the little taco shot">
<title>Contact Us-LTS</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav>
<ul>
<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="Images/tacos_close_up_400x260.png" alt="Little taco shop tacos"
title="tacos ready to eat!" height="260" width="400">
<figcaption>Little Taco Shop Tacos</figcaption>
</figure>
</header>
<hr>
<main>
<!-- our content -->
<h2>Our Contact Form</h2>
<form>
<fieldset>
<legend>Send Us A Message</legend>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="your name">
<br>
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="your email">
<br>
<br>
<label for="message">Your Message:</label>
<textarea id="message" name="message" placeholder="Type your message here..."></textarea>
<br>
<br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</fieldset>
</form>
<h3>Our Location</h3>
<p>555 Taco Temptation Lane, Suite T<br>
Kansas City, MO 55555-5555</p>
<p>Phone: <a href="tel:5555555555">555-555-5555</a></p>
</main>
<footer>
<p>Copyright © The little taco shop</p>
</footer>
</body>
</html>