-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtiming.html
More file actions
62 lines (59 loc) · 1.75 KB
/
Copy pathtiming.html
File metadata and controls
62 lines (59 loc) · 1.75 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Desiree D'Mello">
<meta name="description" content="Store Timing for Makeup Lore Website">
<title>Makeup Lore</title>
<link rel="icon" href="images/makeuplore.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>
<h1>Makeup Lore</h1>
<nav>
<ul>
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/#about">About <abbr title="Makeup Lore"> ML</abbr></a>
</li>
<li>
<a href="/#products">Our Top Products</a>
</li>
<li>
<a href="contact.html">Contact Us</a>
</li>
</ul>
</nav>
<figure>
<img src="images/foundation.jpg" alt="Foundation Shades" width="600" height="400">
</figure>
<figcaption>Foundation Shades</figcaption>
</header>
<hr>
<main>
<p>Come Check Us Out Any Day of the Week!</p>
<dl>
<dt>Monday to Thursday</dt>
<dd>
<time datetime="09:00">9:00am</time> till <time datetime="22:00">10:00pm</time>
</dd>
</dl>
<dl>
<dt>Friday to Sunday</dt>
<dd>
<time datetime="09:00">9:00am</time> till <time datetime="18:00">6:00pm</time>
</dd>
</dl>
<p>
<a href="#">Back to Top</a>
</p>
</main>
<hr>
<footer>
Copyright © Makeup Lore
</footer>
</body>
</html>