-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (63 loc) · 1.1 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<title>Radix</title>
<style>
body {
margin: 0;
padding: 0;
}
#table {
width: 100%;
height: 100%;
text-align: center;
border-collapse: collapse;
background: #f5f5f5;
border: none;
margin: 0;
}
#table thead td{
font-size: 130px;
font-weight: bold;
}
#table tbody {
margin-top: 50px;
}
#table {
font-size: 70px;
}
#table td {
border-left: 5px solid #fff;
}
#table td:first-child {
border-left: none;
}
#header {
width: 100%;
text-align: center;
}
</style>
</head>
<body>
<div id="header">
<h1>Seconds since start</h1>
<h2>In different numerical systems</h2>
</div>
<table id="table">
<thead>
<tr>
<td width="50%">10</td>
<td>2</td>
</tr>
</thead>
<tbody>
<tr><td>0</td><td>0</td></tr>
</tbody>
</table>
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script type="text/javascript" src="javascript.js"></script>
</body>
</html>