-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
executable file
·101 lines (91 loc) · 4.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Michael Boateng">
<meta name="description" content="This is the offical page of The Little Taco Shop">
<meta name="viewport" content="width=device-width, initial-scal=1.0">
<title>Contact Us - LTS</title>
<link rel="stylesheet" href="./asset/style.css">
<script src="./asset/JS/main.js" defer></script>
</head>
<body>
<header class="header">
<h1 class="header__h1">Little Taco Shop</h1>
<nav class="header__nav">
<ul>
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./hours.html">Store Hours</a>
</li>
<li>
<a href="/#menu">Menu</a>
</li>
<li>
<a href="#" class="active">Contact</a>
</li>
<li>
<a href="/about.html">About LTS</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<figure>
<img src="./asset/img/pexels-los-muertos-crew-8230030.jpg" alt="Littel Taco Shop Tacos" width="5493" height="3662" title="Tacos ready to eat!">
<figcaption class="offscreen">Littel Taco Shop Tacos</figcaption>
</figure>
</section>
<main class="main">
<article class="main__article">
<h2>Our Location</h2>
<p>
<address>555 Taco Tenptation lave. Suiet T Kansas City.<br> Mo 55555 - 55555</address>
</p>
<p>Phone:<a href="tel:+233 545420797">555 - 555 - 555</a></p>
</article>
<hr>
<article class="main__article contact">
<section>
<h2 class="contact__h2">Our Contact Form</h2>
<form action="https://httpbin.org/get" method="get" class="contact__form">
<fieldset class="contact__fieldset">
<legend class="offscreen">Send Us A Message</legend>
<p class="contact__p">
<label class="contact__lable" for="name">Name:</label>
<input class="contact__input" type="text" name="Name" id="name" placeholder="Enter Your Name Here." required autofocus autocomplete="on" />
</p>
<p class="contact__p">
<label class="contact__lable" for="email">Email:</label>
<input class="contact__input" type="email" name="Email" id="email" placeholder="[email protected]">
</p>
<p class="contact__p">
<label class="contact__lable" for="message">Your Message:</label>
<br />
<textarea class="contact__textarea" cols="30" rows="10" placeholder="Type your Message Here..." name="Message" id="message"></textarea>
</p>
</fieldset>
<button class="contact__btn" type="submit">Submit</button>
<button class="contact__btn" type="reset">Reset</button>
</form>
</section>
</article>
</main>
<br>
<br>
<br>
<p>
<a href="#">Back to Top</a>
</p>
<footer class="footer">
<p>
<span class="nowrap">Copyright © <time id="year"></time></span>
<span class="nowrap">Little Taco Shop.</span>
</p>
</footer>
</body>
</html>