-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexample.html
More file actions
26 lines (25 loc) · 903 Bytes
/
Copy pathexample.html
File metadata and controls
26 lines (25 loc) · 903 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
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript" src="bitquote.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link href='http://fonts.googleapis.com/css?family=Sintony:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="bitquote.css" type="text/css"/>
<script>
//Initialize with default options
initialize();
//Initialize ILS
var optionsILS = { "fiat": "ILS", "fiatSymbol": "₪", "container": "bitquoteILS", "href": "https://bitcoinaverage.com/#ILS", "autoUpdate": true, "autoResize": true, "showBidAsk": false }
initialize(optionsILS);
</script>
<title></title>
</head>
<body>
<div style="width:180px;">
<div id="bitquote" class="bitquote"></div>
<br/>
<div id="bitquoteILS" class="bitquote"></div>
</div>
</body>
</html>