forked from EclipseLikesSpace/kOIN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<title>kOIN Converter</title>
<!-- Import style.css -->
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<noscript>
<div class="noscript">
<p>
<strong>
You need to enable JavaScript to run this app!
</strong>
</p>
</div>
</noscript>
<div id="container">
<h1 id="h1" class="center">KSP Funds (kOIN) to USD Converter</h1>
<div id="converter" class="center">
<span id="koin_span" class="input">
<input class="input center" style="background-color: transparent;" type="number" id="koin" value='7'><label class="font-size"> Funds</label></input><br>
</span><br>
<span id="usd_span">
<input class="input center" style="background-color: transparent;" type="number" id="usd" value='40000'><label class="font-size"> USD </label></input><br>
</span>
</div>
<a href="https://github.com/EclipseLikesSpace/kOIN" class="forkongh">like this project? fork it on github!</a>
</div>
<script src='index.js'></script>
</body>
</html>