-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool2.html
57 lines (49 loc) · 1.81 KB
/
tool2.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
<!DOCTYPE html>
<html>
<head>
<title>Number System Outputs</title>
<link rel="shortcut icon" href="https://raw.githubusercontent.com/t7buja00/DevBasicSkills2017-2/ConversionTool-Amendment/Math.ico" />
<link rel="stylesheet" href="css\MainPage.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body onload="fill.hidden=true">
<div class="header">
<h1>Mathematical Functions</h1>
</div>
<div class="row">
<div class="col-3 menu">
<ul>
<li><a href="MainPage.html">Home</a></li>
<li><a href="Tool1.html">Number System Conversion</a></li>
<li><a href="Tool2.html" class="active">Number System Outputs</a></li>
<li><a href="Tool3.html">Combinatorics</a></li>
<li><a href="Tool4.html">Truth Tables</a></li>
<li><a href="Tool5.html">Random Values</a></li>
<li><a href="Tool6.html">RGB Range Slider</a></li>
</ul>
</div>
<div class="col-6">
<div class="pad">
<h3>Number System Outputs</h3>
<p>This tool shows a table of Decimal numbers 1-500 and their counterparts in Binary, Octal and Hexadecimal. You can clear or display this table using the button below.</p>
<div id="center3">
<button id="clear"onclick="iframe.hidden=true;fill.hidden=false;this.hidden=true;">Clear Table</button>
<button id="fill" onclick="location.reload();">Display Table</button>
</div>
<div id="center">
<iframe id="iframe" src="Tool2Table.html" width="550" height="340"></iframe>
</div>
</div>
</div>
<div class="col-3 right">
<div class="aside">
<h2>Information</h2>
<p>This page and its contents were designed and written by Jamie Burns and Leon Oelen</p>
</div>
</div>
</div>
<div class="footer">
<p>For more please visit our github pages; <a href="https://github.com/leono93">Leon</a>, <a href="https://github.com/t7buja00">Jamie</a></p>
</div>
</body>
</html>