-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (44 loc) · 1.75 KB
/
index.html
File metadata and controls
49 lines (44 loc) · 1.75 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
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>House of Kaizen</title>
<link href='https://fonts.googleapis.com/css?family=Titillium+Web:400,700' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/shoppingcart.css">
</head>
<body>
<div id="ivan" class="cf">
<div id="title-and-cart" class="cf">
<div id="title">
<h1>Catalogue</h1>
</div>
<div id="cart" class="cf">
<div id="cart-image">
<img src="img/cart.png" alt="Shopping Cart" />
</div>
<div id="cart-items">
<span id="number-of-items">0 items</span><br />
<span id="total">£ 0.00</span></div>
<div id="cart-view"><a href="#item-cart" name="view-cart">View cart</a></div>
</div>
</div>
<div id="items"></div>
<div id="IvanOliveira">
Created by <a href="https://ivanrgoliveira.github.io" target="_blank">Ivan Oliveira</a>
</div>
</div>
<!-- Modal window for the cart -->
<div id="mask" class="close"></div>
<div id="item-cart" class="cart-window cf">
<h2>Your items:</h2>
<a href="" class="close button">X</a>
<div id="cart-statement" class="cf"></div>
</div>
<!-- END of modal window for the cart -->
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.11.3.min.js"><\/script>')</script>
<script src="js/shoppingcart.js"></script>
</body>
</html>