-
Notifications
You must be signed in to change notification settings - Fork 2
/
hours.htm
60 lines (59 loc) · 1.45 KB
/
hours.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="author" content="Brijeshkumar Chavda" />
<meta name="description" content="Hours for the TACO SHOP" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<title>Store Hours</title>
</head>
<body>
<h1>Taco Shop Hours</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="#about">About <abbr title="Taco Shop">TS</abbr></a>
</li>
<li>
<a href="#menu">Our Menu</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<figure>
<img
src="image/tacos_tray_400x267.png"
alt="Tacos In Tray"
width="400"
height="267"
alt="Tacos in tray"
/>
<figcaption>A Tray of Tasty Tacos</figcaption>
</figure>
<hr />
<main>
<p>We are open 7 days a week!</p>
<dl>
<dt>Sunday-Thursday</dt>
<dd>11am to 9pm</dd>
<dt>Friday-Saturday</dt>
<dd>11am to 11pm</dd>
</dl>
<p>
<a href="#">Back to Top</a>
</p>
</main>
<hr />
<footer>
<p>Copyright © The Taco Shop</p>
</footer>
</body>
</html>