-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffee.html
55 lines (55 loc) · 2.43 KB
/
coffee.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Coffee</title>
<meta chartset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="Coffee">
<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>
<h1 class="t">Coffee</h1>
<div id="container"></div>
<p class="desc">Coffee is a popular beverage made from roasted coffee beans. It has a rich, earthy aroma and a bold, slightly bitter flavor that can be customized with different types of milk, sweeteners, and flavorings.</p>
<div id="container"></div>
<div class="intro">
<div class="pnp">
<img src="images/americano.webp" alt="red-velvet cupcake" class="display">
<h3 class="cuptext">Americano</h3>
<h4 class="cuptext s">$4.99</h4>
</div>
<div class="pnp">
<img src="images/Espresso.webp" alt="Chocolate cupcake" class="display">
<h3 class="cuptext">Espresso</h3>
<h4 class="cuptext s">$4.99</h4>
</div>
<div class="pnp">
<img src="images/cappuccino.webp" alt="vanilla-cupcakes" class="display">
<h3 class="cuptext">Cappuccino</h3>
<h4 class="cuptext s">$4.99</h4>
</div>
</div>
<div id="container"></div>
<footer>
<h4><a href="contact.html" class="t">Contact Us</a></h4>
</footer>
<div id="container"></div>
</div>
</body>
</html>