forked from HpwClifford/Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (27 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
<script src="main.js"></script>
</head>
<body>
<img src="btc.png"
id="crypto-tracker-logo">
<h1 id="welcome-title">Welcome to Crypto Tracker!</h1>
<div id="data-div">
<h2 id="current-price"></h2>
</div>
<div id="input-div">
<label for="buyPrice">Enter Price To Buy At:</label><br>
<input type="text" id="buyPrice">
<br>
<label for="sellPrice">Enter Price To Sell At:</label><br>
<input type="text" id="sellPrice">
<br>
<button id="submit">Submit</button><br>
<button id="visit-coinbase"><a href="https://www.coinbase.com/" target="_blank">Visit Coinbase</a></button>
<p id="error-message">Please enter a valid number</p>
<p id="are-you-sure">Are you sure about that? 🤔</p>
</div>
</body>
</html>