-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Crypto Watcher</title>
<link rel="stylesheet" href="style.css" />
<script src="script_final.js" defer></script>
</head>
<body>
<!--<select name="" id="select">
<option value="bitcoin">Bitcoin</option>
</select>-->
<div class="container">
<img src="https://via.placeholder.com/50" id="logo" alt="" />
<div class="selections">
<select name="select" id="idSel"></select>
<select name="select" id="valSel"></select>
</div>
<div class="info">
<!--<h1 id="name">Name: Bitcoin</h1>-->
<div class="field">
<h2>Current price:</h2>
<h2 id="price">0 EUR</h2>
</div>
<div class="field">
<p>Hourly change:</p>
<p id="hChange">0</p>
</div>
<div class="field">
<p>Daily change:</p>
<p id="dChange">0</p>
</div>
</div>
<button id="call">Call API</button>
</div>
</body>
</html>