forked from jbillimoria/JavaScriptButtons
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (42 loc) · 1014 Bytes
/
Copy pathindex.html
File metadata and controls
50 lines (42 loc) · 1014 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
</head>
<body>
<script src="../lib/MiniCart/minicart.js"></script>
<div id="buynow">
<h2>Buy Now</h2>
<script src="../src/paypal-button.js?merchant=6XF3MPZBZV6HU"
data-button="buynow"
data-name="Buy now!"
data-amount="1.00"
></script>
</div>
<div id="cart">
<h2>Cart</h2>
<script src="../src/paypal-button.js?merchant=6XF3MPZBZV6HU"
data-button="cart"
data-name="Add to cart!"
data-amount="1.00"
></script>
</div>
<div id="hosted">
<h2>Hosted</h2>
<script src="../src/paypal-button.js?merchant=6XF3MPZBZV6HU"
data-button="cart"
data-id="8R63A645E2QB6"
></script>
</div>
<div id="qr">
<h2>QR Code</h2>
<script src="../src/paypal-button.js?merchant=6XF3MPZBZV6HU"
data-button="qr"
data-name="Buy from a QR code!"
data-amount="1.00"
></script>
</div>
</body>
</html>