-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhours.html
46 lines (44 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Css/style.css">
<title>Coffee shop Hours</title>
</head>
<body>
<header>
<h1>The Coffee shop Hours</h1>
<nav>
<ul>
<li> <a href="/">Home</a></li>
<li><a href="/#about">About us</a></li>
<li><a href="/#menu">Our Menu</a></li>
<li><a href="/contact.html">Contact us</a></li>
</ul>
</nav>
<figure>
<img src="Images/Cappuccino.jpg" alt="Cappuccino" height="250">
<figcaption>Our special Cappuccino</figcaption>
</figure>
</header>
<hr>
<main>
<article id="hours">
<p>We open <time datetime="7">7</time> days a week!</p>
<dl>
<dt>Sunday-Thrusday</dt>
<dd><time datetime="11:00">11 am</time>-<time datetime="18:00">9 pm</time></dd>
<dt>Fridya-Saturday</dt>
<dd><time datetime="11:00">11 am</time>-<time datetime="23:00">11 pm</time></dd>
</dl>
</article>
<p><a href="#">Back to top</a></p>
</main>
<hr>
<footer>
<p>Copyrigt © The Coffee hub</p>
</footer>
</body>
</html>