-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 1.04 KB
/
index.html
File metadata and controls
24 lines (23 loc) · 1.04 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
<html>
<head>
<title></title>
<script type="text/javascript" src="clock.js"></script>
<link href="styles.css" type="text/css" rel="stylesheet" />
</head>
<body style="background-color:black;color:Red" onload="binaryClock();">
<table style="width:50%;height:50%">
<tr>
<td class="res"> </td>
<td class="res">32</td>
<td class="res">16</td>
<td class="res">8</td>
<td class="res">4</td>
<td class="res">2</td>
<td class="res">1</td>
</tr>
<tr><td class="res" id="hr"></td><td id="h32"> </td><td id="h16"> </td><td id="h8"> </td><td id="h4"> </td><td id="h2"> </td><td id="h1"> </td></tr>
<tr><td class="res" id="mr"></td><td id="m32"> </td><td id="m16"> </td><td id="m8"> </td><td id="m4"> </td><td id="m2"> </td><td id="m1"> </td></tr>
<tr><td class="res" id="sr"></td><td id="s32"> </td><td id="s16"> </td><td id="s8"> </td><td id="s4"> </td><td id="s2"> </td><td id="s1"> </td></tr>
</table>
</body>
</html>