-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
39 lines (37 loc) · 1.06 KB
/
example.html
File metadata and controls
39 lines (37 loc) · 1.06 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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
body > div {
margin-bottom: 200px;
margin-left: 200px;
position: inherit;
}
</style>
<script src="https://ecom.creditclick.com/cc.min.js"></script>
<script>loadCreditClick();</script>
</head>
<body>
<div>
<div data-cc="50000" data-cc-country="nl"></div>
</div>
<div>
<div data-cc="100000" data-cc-country="nl"></div>
</div>
<div>
<div data-cc="29999" data-cc-country="de"></div>
</div>
<div>
<div data-cc="99999" data-cc-country="de"></div>
</div>
<div>
<div data-cc="500.00" data-cc-country="nl" data-cc-decimal="."></div>
</div>
<div>
<div data-cc="500.95" data-cc-country="nl" data-cc-decimal="."></div>
</div>
<div>
<div data-cc="500,95" data-cc-country="nl" data-cc-decimal=","></div>
</div>
</body>
</html>