-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhours.html
63 lines (61 loc) · 1.62 KB
/
hours.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Ankit Saha" />
<meta name="description" content="This is about LTS Store Hours" />
<title>Little Taco Shop Hours</title>
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<h1>Little Taco Shop Hours</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="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<img
src="IMG/tacos_tray_400x267.png"
alt="Tacos in a Tray"
title="Plate full of Tacos"
width="400"
height="260"
/>
<figure>A tray of Tasty Tacos</figure>
</header>
<hr />
<main>
<p>We are open 7 days a week!</p>
<dl>
<dt>Sunday-Thursday</dt>
<dd>
<time datetime="11:00">11am</time>-<time datetime="21:00">9pm</time>
</dd>
<dt>Friday-Saturday</dt>
<dd>
<time datetime="11:00">11am</time>-<time datetime="23:00">11pm</time>
</dd>
</dl>
<p>
<a href="#">Back to Top</a>
</p>
</main>
<hr />
<footer>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>