-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.html
executable file
·84 lines (79 loc) · 2.1 KB
/
example.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<html>
<head>
<title> Shopping cart widget </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<style>
.product-image { border:solid 1px #ccc; }
.product-title, .product-price, .product-shipping { font-weight:bold; }
.data-cell { padding:0px 50px 0px 10px;border:solid 0px #fff;vertical-align:top}
.align-cart { padding-left:480px }
.alionpaycart-add-button {
background-color:#FF5D3C;
}
</style>
<table border="0">
<tr>
<td>
<table>
<tr class="product">
<td><img class="product-image"
src="./images/product1.jpg"/>
</td>
<td class="data-cell">
<div class="product-title">Notebook</div>
<div class="product-price">Price: $12.99</div>
<div class="alionpaycart-add-button">
Add to cart
</div>
</td>
</tr>
<tr class="product">
<td><img class="product-image"
src="./images/product2.jpg"/>
</td>
<td class="data-cell">
<div class="product-title">Monitor</div>
<div class="product-price">Price: $9.99</div>
<div class="alionpaycart-add-button">
Add to cart
</div>
</td>
</tr>
<tr class="product">
<td><img class="product-image"
src="./images/product3.jpg"/>
</td>
<td class="data-cell">
<div class="product-title">Photocamera</div>
<div class="product-price">Price: $1.32</div>
<div class="alionpaycart-add-button">
Add to cart
</div>
</td>
</tr>
</table>
</td>
<td width="100%" valign="top">
<div id="alionpaycart-widget">
<!--
<div id="alionpaycart-widget-control">
View Cart (<span id="alionpaycart-widget-subtotal"></span> - <span id="alionpaycart-widget-item-count"></span>)
</div>
-->
</div>
<script type="text/javascript" id="alionpaycart-script" src="http://jscart.loc/2cart.js"
shop_id = "23"
currency = "USD"
lang = "en"
close_cart_when_click_away="false"
highlight_time = "500"
highlight_color = "#D27967"
>
</script>
</td>
</tr>
</table>
</body>
</html>