-
Notifications
You must be signed in to change notification settings - Fork 903
/
Copy pathindex.html
45 lines (44 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Binary</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<table text-align="center">
<tr>
<th class="header">128</th>
<th class="header">64</th>
<th class="header">32</th>
<th class="header">16</th>
<th class="header">8</th>
<th class="header">4</th>
<th class="header">2</th>
<th class="header">1</th>
</tr>
<tr>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="firstLever" onclick="changeLeverOne()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="thirdLever" onclick="changeLeverThree()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="fourthLever" onclick="changeLeverFour()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="secondLever" onclick="changeLeverTwo()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="fifthLever" onclick="changeLeverFive()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="sixthLever" onclick="changeLeverSix()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="seventhLever" onclick="changeLeverSeven()"></td>
<td class="header"><img src="assets/img/lever_up.png" alt="binary lever_up" height="200" width="auto" id="eighthLever" onclick="changeLeverEight()"></td>
</tr>
<tr id="bin">
<td id="binary" colspan="4">0000</td>
<td id="binary2" colspan="4">0000</td>
</tr>
<tr id="dec">
<td colspan="8" id="decimal">00</td>
</tr>
<tr id="hex">
<td id="hexidecimal" colspan="4">0</td>
<td id="hexidecimal2" colspan="4">0</td>
</tr>
</table>
<script src="assets/js/script.js"></script>
</body>
</html>