-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (70 loc) · 3.21 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coffy Cafe</title>
<link rel="stylesheet" href="style.css" />
<script src="myscript.js"></script>
</head>
<body>
<div id="index-content">
<header>
<img src="Images/Logo_cc.png" alt="Coffy Cafe Logo" class="icon">
<h1>COFFY CAFE</h1>
<nav>
<ul>
<li><a href="index.html" class = "active">HOME</a></li>
<li><a href="menu.html">MENU</a></li>
<li><a href="findus.html">FIND US</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</nav>
<hr />
</header>
<section>
<p id="Mission Statement">We're a small local coffee shop with heart. We want to provide the Grey Lynn area with the best
coffee experience possible with only the freshest ingredients.</p>
<img src="Images/Greenhouse Counter.jpg" alt="The interior of the cafe" class="StdPic" class = "responsive">
<img src="Images/coffee 2.jpg" alt="A cup of coffee" class="StdPic" class = "responsive">
</section>
<section>
<p id="coffee-food_info1">We truly believe in supporting local and we're willing to roll up our sleeves and do something
about it rather than just talk.</p>
<p id="coffee-food_info2">All of the food you'll find at Coffy Cafe is made with local ingredients and all of our coffee is
roasted in house. The beans we use are grown right here in Aotearoa which is what gives them that unique 'green'
taste.</p>
<img src="Images/Customers.jpg" alt="Customers drinking coffee" id="index-widepic" class = "responsive">
</section>
<hr />
<footer>
<address>
<ul>
<li>123 Richmond Road</li>
<li>Grey Lynn</li>
<li>Auckland</li>
</ul>
<ul>
<li>(09) 123-4567</li>
<li><a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</address>
<div id="copyright">
<p>© DISD_Group_T 2022 No Rights Reserved</p>
</div>
<div id="socials">
<table>
<tr>
<td><a href="http://www.facebook.com"><img src="Images/facebook-logo.png" alt="facebook icon" /></a></td>
<td><a href="http://www.twitter.com"><img src="Images/twitter-logo.png" alt="twitter icon" /></a></td>
</tr>
<tr>
<td><a href="http://www.instagram.com"><img src="Images/instagram-logo.png" alt="instagram icon" /></a></td>
<td><a href="http://www.linkedin.com"><img src="Images/linkedin-logo.png" alt="linkedin icon" /></a></td>
</tr>
</table>
</div>
</footer>
</div>
</body>
</html>