-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
90 lines (90 loc) · 2.63 KB
/
Index.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="description"
content="Oakwood Espresso - A local coffee shop serving espresso based drinks and fresh baked goods"
/>
<title>Oakwood Espresso</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&family=Raleway&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/Main.css" />
<link rel="manifest" href="manifest.json" />
<link rel="icon" type="image/png" href="icons/favicon.png" />
<script defer src="styles/brands.min.js"></script>
<script defer src="styles/fontawesome.min.js"></script>
</head>
<body>
<main>
<div class="banner">
<p>MERCH COMING SOON</p>
</div>
<div class="contact-info wrapper">
<picture>
<source
srcset="
assets/logo-xs.webp 146w,
assets/logo-small.webp 292w,
assets/logo.webp 584w
"
type="image/webp"
sizes="70vw"
/>
<source
srcset="
assets/logo-xs.png 146w,
assets/logo-small.png 292w,
assets/logo.png 584w
"
type="image/png"
sizes="70vw"
/>
<img src="assets/logo-xs.png" alt="Oakwood Espresso Logo" />
</picture>
<div class="address">
<p>342B Oakwood Ave</p>
<p>Toronto</p>
</div>
<div class="hours">
<p>Hours</p>
<p>Mon-Fri: 7:00am - 5:00pm</p>
<p>Sat-Sun: 8:00am - 5:00pm</p>
</div>
</div>
<footer>
<nav>
<div class="links">
<a
href="https://www.instagram.com/oakwoodespresso/?hl=en"
target="_blank"
rel="noreferrer"
aria-label="Instagram link"
><span class="fab fa-instagram"></span
></a>
<a
href="https://twitter.com/oakwoodespresso?lang=en"
target="_blank"
rel="noreferrer"
aria-label="Twitter link"
><span class="fab fa-twitter"></span
></a>
<a
href="https://www.facebook.com/oakwoodespresso/"
target="_blank"
rel="noreferrer"
aria-label="Facebook link"
><span class="fab fa-facebook"></span
></a>
</div>
</nav>
</footer>
</main>
</body>
</html>