-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (57 loc) · 1.77 KB
/
index.html
File metadata and controls
65 lines (57 loc) · 1.77 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<link href="loop.css" rel="stylesheet" type="text/css">
<script type="text/javascript">
</script>
</head>
<body>
<div id="box">
<form method="post" action="#" name="form1">
<select class="select">
<option value="dc">Decimal</option>
<option value="bn">Binary</option>
<option value="oc">Octal</option>
<option value="hc">Hexadecimal</option>
</select>
<input class="screen" type="text" placeholder="Enter the decimal number" autofocus>
<p class="clear"></p>
</form>
<p class="clear"></p>
<div class="keys">
<span>7</span>
<span>8</span>
<span>9</span>
<span>4</span>
<span>5</span>
<span>6</span>
<span>1</span>
<span>2</span>
<span>3</span>
<span class="zero">0</span>
</div>
<div class="resultdiv">
<section class="resultdivone">
<p class="rsname">Decimal</p>
<p class="result"></p>
</section>
<section>
<p class="rsname">Binary</p>
<p class="result"></p>
</section>
<section>
<p class="rsname">Octal</p>
<p class="result"></p>
</section>
<section>
<p class="rsname">Hexadecimal</p>
<p class="result"></p>
</section>
</div>
<p class="clear"></p>
</div>
<script src="time.js"></script>
</body>
</html>