-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·48 lines (46 loc) · 1.93 KB
/
index.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="zh-Hant-TW" class="no-js">
<!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>index</title>
<meta name="viewport" content="width=device-width, user-scalable=no, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="Keywords" content="" />
<meta name="og:site_name" content="" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:image:url" content="" />
<link rel="icon" type="image/x-icon" href="" />
<link rel="shortcut icon" type="image/x-icon" href="" />
<link rel="stylesheet" href="./css/main.css">
</head>
<body>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
<div id="app">123</div>
<h1>Blockchain</h1>
<h2>Polonix賣價</h2>
<p>比特幣即時價:<span id="BTC"></span>美金</p>
<p>以太幣即時價:<span id="ETH"></span>美金</p>
<h2>Bitoex</h2>
<p>比特幣Buy:<span id="BitoexBTC"></span>台幣</p>
<p>比特幣Sell:<span id="BitoexETH"></span>台幣</p>
<h2>匯率</h2>
<p>1 BTC = <span id="btcTWD_buy"></span>(台幣)</p>
<p>1 BTC = <span id="btcUSD_buy"></span>(美金)</p>
<p>1 BTC = <span id="btcTWD_sell"></span>(台幣)</p>
<p>1 BTC = <span id="btcUSD_sell"></span>(美金)</p>
<button id="get">重整</button>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="./js/app.js"></script>
</body>
</html>