-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitcoin.html
More file actions
36 lines (30 loc) · 1.5 KB
/
Bitcoin.html
File metadata and controls
36 lines (30 loc) · 1.5 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
<!DOCTYPE HTML>
<html lang="es">
<head>
<meta charset="utf-8">
<title >Bitcoin API</title>
<link rel="stylesheet" type="text/css" href="css/css.css">
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body onload="setValores()">
<div id="screen" class="white">
<div class="dropdown">
<span class="dropbtn noselect" id="language">Language</span>
<div class="dropdown-content noselect">
<a href="#" onclick="changeLng('es')" id="spanish" class="noselect">Spanish <img src="img/es.png" height="15" width="20"></a>
<a href="#" onclick="changeLng('en')" id="english" class="noselect">English <img src="img/en.png" height="15" width="20"></a>
</div>
</div>
<a href="#" id="btnClose" onclick="require('electron').remote.getCurrentWindow().close()" data-rel="back" class="white noselect ui-btn ui-corner-all ui-shadow ui-btn ui-icon-delete ui-btn-icon-notext ui-btn-right">Close</a>
<h1 class="white noselect">PRECIO BITCOIN</h1>
<table border="0" id="tablaDivisa">
</table>
<div id="chartContainer" class="noselect"></div>
</div>
<script type="text/javascript" src="js/app.js"></script>
</body>
</html>