-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhours.html
More file actions
41 lines (40 loc) · 1.21 KB
/
Copy pathhours.html
File metadata and controls
41 lines (40 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<title>LTS Hours</title>
</head>
<body>
<header>
<h1>The Little Taco Shop Hours</h1>
<nav>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./index.html#about">About LTS</a></li>
<li><a href="./index.html#ourmenu">Our Menu</a></li>
<li><a href="./contact.html">Contact Us</a></li>
</ul>
</nav>
<img src="./img/tacos_tray_400x267.png" alt="Tacos and a drink"/>
<figcaption>A Tray of Tasty Tacos</figcaption>
<hr/>
</header>
<main>
<p>We are open 7 days a week!</p>
<dl>
<dt>Sunday-Thursday</dt>
<dd>11am-9pm</dd>
<dt>Friday-Saturday</dt>
<dd>11am-11pm</dd>
</dl>
</main>
<footer>
<hr/>
<p>Copyright © The Little Taco Shop</p>
</footer>
</body>
</html>