-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Base Convertor</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header">
<p class="left">CONVERT TO AND FROM BINARY</p>
<p class="right"><a class="link" href="about.html">ABOUT</a></p>
</div>
<table>
<tr>
<td colspan="2" class="center">Enter the number, select bases and click on "Convert"</td>
</tr>
<tr>
<td><input type="text" id="first"></td>
<td><input type="text" id="second"></td>
</tr>
<tr>
<td>
<select id="base1">
<option value="binary">Binary</option>
<option value="decimal">Decimal</option>
</select>
</td>
<td>
<select id="base2">
<option value="decimal">Decimal</option>
<option value="binary">Binary</option>
</select>
</td>
</tr>
<tr>
<td colspan="2" class="center"><button onclick="convert()">Convert</button></td>
</tr>
</table>
<script src="script.js">
</script>
</body>
</html>