-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (56 loc) · 2.32 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Salary - BitCoin Conversion</title>
<link rel="stylesheet" href="main.css">
<link href="images/favicon.ico" type="image/x-icon" rel="icon" />
</head>
<body class="page-body" style ="background-image:url(https://www.xmple.com/wallpaper/honeycomb-hexagon-orange-beehive-3200x1800-c2-eeaa0c-6f510b-l2-25-287-a-0-f-5.svg)">
<div class="center-float">
<section class ="intro"><h1>Salary to Bitcoin Calculator</h1><p class ="summary">Welcome to The Salary-to-Bitcoin Calculator<br> Input how much BTC you own & see it's value, then search current government jobs to view the maximum salary & then how many bitcoin the salary is worth!</p>
<button class="start">START</button>
</section>
<section class="home-screen">
<h1>Salary to Bitcoin Calculator</h1>
<h2>Convert to $USD</h2>
<form class="bitcoin-convert">
<label for="Amount of user Bitcoin">1. Amount of Bitcoin owned<br>
<input id ="user-bitcoin-amount" type="number" placeholder="1.0 BTC" step="0.01" min="0" max="21000000"required></label>
<br>
<button type="submit" id="convert">Submit</button>
</form>
<p class="results">Results in USD: $<span id="conversion-results"></span></p>
<p class="display-current-rate">The Current Rate of 1 BTC: $<span class="rate-btc" id="one-coin"></span>
</p>
<form class="show-jobs" id="jobs-form" role="search">
<div>
<label>2. Job Search by Keyword(s) <br>
<input type="text" id="job-query" placeholder="i.e.-software jobs, nursing, architect" list="default-jobs" required>
<datalist id="default-jobs">
<option value="Physician jobs">
<option value="Pilot">
<option value="Software jobs">
<option value="Director">
<option value="Architect jobs">
<option value="Social work">
<option value="Teacher">
<option value="Executive">
</option>
</datalist>
</label>
<br>
<h4>See USA job salaries</h4>
<button class="display-jobs" type="submit" id="jobs">DISPLAY JOBS</button>
<br>
<div class="salary-results"></div>
<br>
</div>
</form>
</section>
</div>
<script src="./dist/bundle.js"></script>
</body>
</html>