-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
36 lines (27 loc) · 1005 Bytes
/
index2.html
File metadata and controls
36 lines (27 loc) · 1005 Bytes
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
<!doctype html>
<html>
<head>
<script src="jquery-1.11.1.js"></script>
<script src="products.js"></script>
<script src="index2.js"></script>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div id="overlay"></div>
<header>
<img id="left_pin" style="float: left" src="images/pin.png">
<h1 style="float: left;margin-left: 200px;position:relative;">Lebowski's Rugs</h1>
<img style="float: right" id="right_pin" src="images/pin.png">
<div style="clear:both;"></div>
</header>
<div id="cart">
<img src='images/biglebowski.jpg' id="cartImage" />
<span id="cartImageText">Good purchase, that rug will really tie the room together. </span>
<h2>Cart</h2>
<h3>Total: <span id="cartTotal" data-cartTotal="0">$0.00</span></h3>
<form action="#"><button id="checkout" >Checkout</button></form>
</div>
<div id="products">
</div>
</body>
</html>