-
Notifications
You must be signed in to change notification settings - Fork 1
/
index1.html
49 lines (48 loc) · 1.71 KB
/
index1.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
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Google Stores - Demo Store</title>
<link media="screen" type="text/css" rel="stylesheet" href="./files/demo.css">
<script id='googlecart-script' type='text/javascript'
src='https://checkout.google.com/seller/gsc/v2_2/cart.js?mid=839514971325212'
currency='USD' productWeightUnits='LB'
highlight-time="1000"
highlight-color="#FF7878"
cart-opening-time="1500"
></script>
<style type="text/css">
/* change the color of prices in the widget to green */
.googlecart-override .googlecart-widget-price {
color: green;
}
</style>
</head>
<body>
<div id="googlecart-widget-control" googlecart-widget-control-align="left"
style="text-decoration:underline;height:30px">View cart</div>
<div align="center">
<table>
<tbody><tr>
<td class="product">
<img class="product-image" src="./files/cup.jpg">
<span>
<div class="product-title">Travel Mug</div>
<div class="product-price">$8.02</div>
</span>
<div class="googlecart-add-button" ></div>
</td>
<td class="product">
<img class="product-image" src="./files/google.jpg">
<span>
<div class="product-title">T-shirt</div>
<span class="product-price">$19.70</span>
<select class="product-attr-size">
<option googlecart-set-product-price="$19.70">small</option>
<option googlecart-set-product-price="$20.60">medium</option>
<option googlecart-set-product-price="$21.30">large</option>
</select>
</span>
<div class="googlecart-add-button"></div>
</td>
</tr></tbody>
</table>
</div>
</body></html>