-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhours.html
71 lines (64 loc) · 1.96 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
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Dave Gray">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Store Hours for The Little Taco Shop">
<title>Store Hours</title>
<link rel="icon" href="alarm.png" type="image/x-icon">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="header">
<h1 class="header__h1">Shop Hours</h1>
<nav class="header__nav">
<ul class="header__ul">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/#menu">Menu</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<figure>
<img src="taco3.png" alt="A Tray of Tasty Tacos" title="We love trays of tacos!"
width="1000" height="408">
<figcaption class="offscreen">
A Tray of Tasty Tacos
</figcaption>
</figure>
</section>
<main class="main">
<article class="main__article">
<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>
<p class="center hours__p">
<a href="#">Back To Top</a>
</p>
</article>
</main>
<footer class="footer">
<p>
<span class="nowrap">Copyright ©</span>
<span class="nowrap">The Taco Shell</span>
</p>
</footer>
</body>
</html>