-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (86 loc) · 3.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Coffe & Cake</title>
<meta chartset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="website and menu for coffee and cake">
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div id="page-wrapper">
<header>
<div class="nl">
<h1>Coffee & Cake</h1>
<img src="images/logo.png" id="logo" alt="logo">
</div>
<nav id="navbar">
<ul>
<li><a href="index.html" class="nav-link">Home</a></li>
<li><a href="red-velvet.html" class="nav-link">Cupcakes</a></li>
<li><a href="sweets.html" class="nav-link">Sweets</a></li>
<li><a href="coffee.html" class="nav-link">Coffee</a></li>
<li><a href="contact.html" class="nav-link">Contact Us</a></li>
</ul>
</nav>
</header>
<div id="container-first"></div>
<div id="container-first"></div>
<div class="intro">
<img src="images/coffee.webp" alt="cake and coffe cup" class="intro_pic">
<img src="images/cake.jpg" alt="cake and coffe cup" class="intro_pic">
<img src="images/employee.webp" alt="cake and coffe cup" class="intro_pic">
</div>
<div id="container"></div>
<section class="about">
<div id="box">
<h2 class="ab">About Us:</h2>
<p class="pab">We’ve been baking and brewing for over 10 years already! Anyone who’s tried our delicious cakes and our signature coffee at least once is now our loyal customer.</p>
<p class="pab">Visit our fabulous little coffee shop, and each hour spent will leave a lasting impression for the rest of your week.</p>
</div>
</section>
<div id="container"></div>
<section class="menu">
<h2 class="mt">Menu:</h2>
<div class="grid">
<div class="dessert">
<h4 class="type">Desserts</h4>
<ul class="list">
<li class="f"><a href="red-velvet.html">Cupcakes:</a>
<ul class="minilist">
<li id="ct">Chocolate</li>
<li id="ct">Vanilla</li>
<li id="ct">Red Velvet</li>
</ul>
</li>
<li class="f"><a href="sweets.html">Sweets</a></li>
</ul>
</div>
<div class="coffee">
<h4 class="type"><a href="coffee.html">Coffee</a></h4>
<ul class="list">
<li class="f">Americano</li>
<li class="f">Espresso</li>
<li class="f">Cappuccino</li>
</ul>
</div>
</div>
</section>
<div id="container"></div>
<section class="htc">
<div id="box">
<h2 class="ab">How to place an order?</h2>
<ol>
<li class="pab">Select the cake that you like</li>
<li class="pab">Call (000) 000-0000 and order your cake</li>
</ol>
</div>
</section>
<div id="container"></div>
<footer>
<h4><a href="contact.html" class="t">Contact Us</a></h4>
</footer>
<div id="container"></div>
</div>
</body>
</html>