-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsweets.html
55 lines (55 loc) · 2.78 KB
/
sweets.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>Sweets</title>
<meta chartset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="description" content="sweets">
<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">Sweets</h1>
<div id="container"></div>
<p class="desc">Sweets are a confectionary delight enjoyed by both kids and adults alike. But only handcrafted sweets can reveal the true potential of childhood’s favorite edibles. Precisely for this reason we’ve dedicated heaps of hours of our delicious time to perfect the perfect sweet – one that would fully satisfy even the pickiest of epicurean senses. At our candy store you can find candy for any occasion or mood. For traditionalist – we have caramels and chocolates, and for the more adventurous types – we have sweet and sour, salty, and even spicy.</p>
<div id="container"></div>
<div class="intro">
<div class="pnp">
<img src="images/Lollipop.jpg" alt="red-velvet cupcake" class="display">
<h3 class="cuptext">Lollipops</h3>
<h4 class="cuptext s">$1.99</h4>
</div>
<div class="pnp">
<img src="images/caramels.jpeg" alt="Chocolate cupcake" class="display">
<h3 class="cuptext">Caramels</h3>
<h4 class="cuptext s">$4.99 per pound</h4>
</div>
<div class="pnp">
<img src="images/cookie-bars.jpeg" alt="vanilla-cupcakes" class="display">
<h3 class="cuptext">Cookie Bars</h3>
<h4 class="cuptext s">$2.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>