-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.html
43 lines (32 loc) · 1.32 KB
/
base.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
<!doctype html>
<html>
<link rel="stylesheet" href="css/style.css" type="text/css">
<head>
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,700,900&display=swap" rel="stylesheet">
<title>
Base Converter
</title>
</head>
<header>
<h2><center>Base Converter</center></h2>
</header>
<body><div class="buttons">
<div class="item1"><br><br><button type="button" class="button" onClick="window.location.href='index.html';">Home</button><br><br></div>
<div class="item2"><button type="button" class="button" onClick="window.location.href='temp.html';">Temperature Converter</button><br><br></div>
</div>
<center><strong>Please enter the value, current base and final base</strong></center><br>
<div class="container">
<form id="base"><center>
<strong>Value:</strong>
<input type="text" id="num"><br><br>
<strong>From base:</strong>
<input type="text" id="frombase"><br><br>
<strong>To base:</strong>
<input type="text" id="tobase"><br><br>
<input type="submit" id="submit" value="Calculate">
</center></form>
</div>
<center><h2 id="result"></h2></center>
<script type="text/javascript" src="base.js"></script>
</body>
</html>