-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathshop.html
More file actions
46 lines (44 loc) · 1.21 KB
/
shop.html
File metadata and controls
46 lines (44 loc) · 1.21 KB
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
<!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>
<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 Cupcakes </h1>
<ul class="inline">
<li class="cupcake">
<h4>Vanilla Cupcake</h4>
<h4 class="tiny">with</h4>
<h4>Vanilla Frosting</h4>
<h5>$4.00</h5>
<img src="img/cupcakes/cupcake1.jpg" alt="vanilla" />
</li>
<li class="cupcake">
<h4>Strawberry Cupcake</h4>
<h4 class="tiny">with</h4>
<h4>Vanilla Frosting</h4>
<h5>$5.00</h5>
<img src="img/cupcakes/cupcake3.jpg" alt="strawberry" />
</li>
</ul>
</div>
<script type="text/javascript" src="scripts.js"></script>
</body>
</html>