This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
forked from KansasCityWomeninTechnology/codingandcupcakes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
59 lines (57 loc) · 1.65 KB
/
shop.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Coding & Cupcakes</title>
<style type="text/css"></style>
<link rel="stylesheet" href="mystyles.css" />
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
</head>
<body class="shop">
<div class="header">
<div class="inner">
<div class="logo">
<img src="img/logo.png" alt="">
</div>
<ul class="menu">
<li><a href="index.html">Home</a></li>
<li><a class="selected" href="shop.html">Shop</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="content">
<h1>Shop Charlotte's cupcake shop </h1>
<ul class="inline">
<li class="cupcake">
<h4>The BEST Cupcake EVER</h4>
<h5>$100</h5>
<img src="img/best.jpeg" alt="vanilla" />
</li>
<li class="cupcake">
<h4>Chocolate Cupcake</h4>
<h4 class="tiny">with</h4>
<h4>strawberry frosting</h4>
<h5>$9.00</h5>
<img src="img/strawberry.jpeg" alt="strawberry" />
</li>
<li class="cupcake">
<h4>The Sunshine Cupcake</h4>
<h5>$7.00</h5>
<img src="img/sun.jpeg" alt="vanilla" />
</li>
<li class="cupcake">
<h4>Rainbow Cupcake</h4>
<h5>$6.99</h5>
<img src="img/theRainbowCupcake.jpeg" alt="red orange yellow green blue purple pink twirled">
</li>
<li class="cupcake">
<h4>Double Chocolate Chip</h4>
<h5>$9.99</h5>
<img src="img/doubleChocolateChipCupcake.jpeg" alt="Chocolate Chocolate Chocolate Cupcake">
</li>
</ul>
</div>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>