-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
109 lines (105 loc) · 2.9 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Ankit Saha" />
<meta name="description" content="This is the forum to contact us" />
<title>Contact Us</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav aria-label="Primary-navigation">
<ul>
<li>
<a href="home.html">Home</a>
</li>
<li>
<a href="home.html#LTS">About LTS</a>
</li>
<li>
<a href="home.html#menu">Our Menu</a>
</li>
<li>
<a href="hours.html">Contact Us</a>
</li>
</ul>
</nav>
<img
src="IMG/tacos_close_up_400x260.png"
alt="Our Shop's Tacos"
title="Tacos"
width="400"
height="260"
/>
<figure>Little Taco Shop's Tacos</figure>
</header>
<main>
<article id="Contact_Forum">
<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"
autocomplete="on"
required
/>
</p>
<p>
<label for="email">Email:</label>
<input
type="email"
id="email"
name="email"
placeholder="your email"
autocomplete="on"
required
/>
</p>
<label for="message">Your Message:</label>
<br />
<textarea
name="message"
id="message"
cols="30"
rows="10"
placeholder="type your message here"
></textarea>
<br />
</fieldset>
<button
type="submit"
formaction="https://httpbin.org/post"
formmethod="post"
>
Send
</button>
<button type="reset">Reset</button>
</form>
</article>
<article id="Our_location">
<h2>Our Location</h2>
<address>
555 Taco Temptation Lane,Suite T <br />
Kansas City, MO 55555-5555
</address>
<p>Phone:<a href="tel:555-555-5555">555-555-5555</a></p>
<p>
<a href="#">Back to Top</a>
</p>
</article>
</main>
<hr />
<footer>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>