-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBitcoin.html
More file actions
45 lines (37 loc) · 1.14 KB
/
Bitcoin.html
File metadata and controls
45 lines (37 loc) · 1.14 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
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Q-brown Crypto Converter: BITCOIN</title>
<link rel="stylesheet" href="CSS/styles.css">
</head>
<body id="Background">
<header class="For-crypto">
<h1>Q-brown Crypto Converter</h1>
<a href="index2.html">Back</a>
</header>
<br><br>
<div class="container-all">
<h1>BITCOIN CONVERTER</h1>
<br>
<br>
<label for="Bitcoin Coin Converter">$</label>
<br><br>
<div class="double-bit">
<div><input type="number" id="BitNum" placeholder="Input $77,412"></div>
<div><input type="number" id="Bit" placeholder="1Bit"></div>
</div>
<br><br>
<br>
<button id="btn">Convert</button>
<br><br><br>
<div class="Output-BIT">
<h3 id="Out"></h3>
</div>
<br><br>
</div>
<br><br>
<script src="JS/script.js"></script>
</body>
</html>