-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstoreHours.html
61 lines (59 loc) · 2.08 KB
/
storeHours.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
<!DOCTYPE>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Amruta Kothawade">
<meta name="Description" content="The Fashion Vogue hours">
<title>TFV hours</title>
<link rel="stylesheet" href="main.css" type="text/css">
<script src="main.js" defer></script>
</head>
<body>
<header class="header">
<h1 class="header__h1">Fashion Vogue Store Hours</h1>
<nav class="header__nav">
<ul class="header__ul">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/#styles">Our Styles</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
<li>
<a href="AboutTFV.html">About</a>
</li>
</ul>
</nav>
</header>
<section class="hero">
<figure>
<img src="img/voguerunway.jpg" alt="Vogue runway" title="The Vogue Runway" width="1000" height="667">
<figcaption class="offscreen">The Vogue Runway</figcaption>
</figure>
</section>
<main class="main">
<article class="main__article">
<h2>Hours</h2>
<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>
</article>
</main>
<hr>
<footer class="footer">
<hr>
<p>
<span class="nowrap">Copyright © <time id="year"></time> </span>
<span class="nowrap"><a href="about.html">The Fashion Vogue</a></span>
</p>
</footer>
</body>
</html>