-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
90 lines (84 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Kalpesh Desai">
<meta name="description" content="Contact information for the Taco shop">
<title>Contact Us - LTS</title>
<link rel="icon" href="./icon/dogpaw.png" type="image/x-icon">
<link rel="stylesheet" href="css1/style.css">
<style>
body {
background-color: lightgreen;
}
</style>
</head>
<body>
<header>
<h1>Contact Us</h1>
<nav>
<ul>
<li>
<a href="/HtmlProject/">Home</a>
</li>
<li>
<a href="/HtmlProject/#about/">About <abbr title="The Taco Shop">LTS</abbr></a>
</li>
<li>
<a href="/HtmlProject/#menu">Our menu</a>
</li>
<li>
<a href="hours.html">Store Hours</a>
</li>
</ul>
</nav>
<figure>
<img src="img/tacos_close_up_400x260.png" alt="Tacos and a drink" title="We love tacos" width="400" height="260"/>
<figcaption>
Tacos and a Drink
</figcaption>
</figure>
</header>
<hr/>
<main>
<!-- Our content -->
<section>
<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="name">Email:</label>
<input type="email" name="email" id="email" placeholder="your email" required>
</p>
<p>
<label for="name">Your Message:</label>
<br>
<textarea name="message" id="message" cols="30" rows="10"
placeholder="Enter your message here"></textarea>
</p>
</fieldset>
<button type="submit" >Submit</button>
<button type="reset" >Reset</button>
</form>
</section>
<section>
<h2>Our Location</h2>
<address>
555 Taco Temptation Lane, Suite T<br>
Kansas City, Mo 55555-55555
<br/><br/>
Phone:<a href="tel:+5555555555">555-555-5555</a>
</address>
</section>
</main>
<hr>
<footer>
<p>Copyright © The taco shop.</p>
</footer>
</body>
</html>