-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhours.html
54 lines (54 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Devansh Saxena">
<meta name="description" content="Little Taco Shop">
<link rel="stylesheet" href="css/style.css" type="text/css">
<link rel="icon" href="/img/favicon.ico" type="image/x-icon">
<title>Little Taco Shop</title>
</head>
<body>
<header id="storeHours">
<h1>Little Taco Shop Hours</h1>
<nav>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/index.html#aboutLTS"><abbr title="Little Tacos Shop">LTS</abbr></a></li>
<li><a href="/index.html#menuSection">Our Menu</a></li>
<li><a href="/contact.html">Contact Us</a></li>
</ul>
</nav>
<figure>
<img
src="img/tacos_tray_400x267.png"
alt="Little Taco Shop image"
width="400"
height="267">
<figcaption>A Tray of Tasty Tacos</figcaption>
</figure>
</header>
<hr>
<main>
<p>We are open 7 days a week!</p>
<dl>
<dt>Sunday-Thursday</dt>
<dd>
<time datetime="11:00">11 am</time>-
<time datetime="21:00">9pm</time>
</dd>
<dt>Friday-Saturday</dt>
<dd>
<time datetime="11:00">11 am</time>-
<time datetime="23:00">11pm</time>
</dd>
</dl>
<a href="#">Back To Top</a>
</main>
<hr>
<footer>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>