-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.32 KB
/
index.html
File metadata and controls
55 lines (46 loc) · 1.32 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
<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">
<title>Salmon Cookies</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<img src="img/salmon.png">
<span>Pat Salmon's Cookies</span>
<nav>
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT US</a></li>
<li><a href="#">CONTACT US</a></li>
<li><a href="sales.html">Sales</a></li>
</ul>
</nav>
</header>
<main>
<div>
<span>Our Best Cookies</span>
</div>
<div>
<img src="img/chinook.jpg">
<img src="img/cutter.jpeg">
<img src="img/fish.jpg">
<img src="img/frosted-cookie.jpg">
<img src="img/shirt.jpg">
</div>
<h3>Opening Hours</h3>
<p>
Saturday to Thursday 10:00am – 10:00pm<br>
Friday 02:00pm – 10:00pm
</p>
</main>
<footer>
<span>© All Rights Reserved</span>
<p>Call Us: +03 3233 55132</p>
<p>info@patsalmonscookies</p>
</footer>
</body>
</html>