-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 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
<head>
<link rel=stylesheet href=functional.css>
<link rel=stylesheet href=readability.css>
<link rel=stylesheet href=scrolls.css>
<link rel=stylesheet href=colors.css>
<link rel=stylesheet href=pixelperfection.css>
</head>
<body>
<div class=sTable>
<table>
<thead>
<tr><!-- headers go here --></tr>
<!-- they should be <th>, <th>, <th> ... <th> -->
</thead>
<tbody><!-- rows in <tr> go here --></tbody>
<!-- they should be made of <th>, <td>, <td> ... <td> -->
<tfoot>
<tr><!-- footers go here --></tr>
<!-- they should be <th>, <td>, <td> ... <td> -->
</tfoot>
</table>
</div>
<script>
// 500 rows by 20 fields each (10,000 cells) worked fine for me
rows = 160
columns = 50
cells = rows*columns
</script>
<!-- <script src=loremfill.js></script> -->
<script src=stuff.js></script>
<script src=stuffrnd.js></script>
<script src=personfill.js></script>
<style>td {text-align: center}</style>
</body>