copying files to public repo

This commit is contained in:
Alan
2022-03-30 09:19:32 -05:00
commit 96d50fd698
17 changed files with 1665 additions and 0 deletions

56
index.html Normal file
View File

@@ -0,0 +1,56 @@
<script type="text/javascript" src="/sort-table.js"></script>
<!-- <style>
table.js-sort-table.js-sort-asc thead tr>.js-sort-active:not(.js-sort-none):after {
content: "\25b2";
font-size: 0.7em;
padding-left: 3px;
line-height: 0.7em;
}
table.js-sort-table.js-sort-desc thead tr>.js-sort-active:not(.js-sort-none):after {
content: "\25bc";
font-size: 0.7em;
padding-left: 3px;
line-height: 0.7em;
}
</style> -->
<head>
</head>
<body>
<table class="table" id="my_Table" style="border: 1px solid rgb(221, 221, 221);">
<tbody>
<tr>
<th class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Name</th>
<th class="ck_border" style="border: 1px solid rgb(221, 221, 221);">here are some words in front date this is more words</th>
</tr>
<tr>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Alpha</td>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">12/24/1983</td>
</tr>
<tr>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Bravo</td>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">02/23/2014</td>
</tr>
<tr>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Charlie</td>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">10/09/2022</td>
</tr>
<tr>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Delta</td>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">04/03/1968</td>
</tr>
<tr>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Echo</td>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">05/26/1974</td>
</tr>
<tr>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">Foxtrot</td>
<td class="ck_border" style="border: 1px solid rgb(221, 221, 221);">06/16/1997</td>
</tr>
</tbody>
</table>
</body>