-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable-static.html
133 lines (130 loc) · 3.27 KB
/
table-static.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>table-static.html</title>
<style>
* { box-sizing:border-box; }
body {
font-size:16pt; font-family:sans-serif;
border:0; padding:10vh 10vw;
}
#app {
margin:5vh auto;
}
tr { border:3px double gray; }
th {
font-family:monospace;
text-align:left;
padding:3px 8px;
}
td, th { font-size:1em; text-align:top; }
td { padding:3px 8px; }
table, caption, tr, th, td { border:1px solid blue; }
</style>
</head>
<body>
<div id="app">
<h1 style="width:50vw;">
Static Table of Filenames
<br/><span style="font-size:0.6em;">taken from</span>
<br/><code>flexbox</code> Example
</h1>
<p style="width:50vw;">
<code>
This is an <mark> incomplete </mark> list - not all source
files for flexbox-ex ate included here. 2023-05-29
</code>
</p>
<table style="width:50vw;">
<caption>
<strike>
this table shows the source files that are used to
construct this page
</strike>
<br/>
</i>
</caption>
<tr>
<th><a href="./flexbox-ex.html">./flexbox-ex.html</a></th>
<td><strike>This file.</strike></td>
</tr>
<tr>
<th>
<a href="./Images/20210527_022114.jpg"
>./Images/20210527_022114.jpg</a>
</th>
<td>background image for this file</td>
</tr>
<tr>
<th>
<a href="./SVG/1680700948octopus.svg"
>./SVG/1680700948octopus.svg</a>
</th>
<td>Cthulu SVG Image file</td>
</tr>
<tr>
<th><a href="./mud/catspaw.svg">./mud/catspaw.svg</a></th>
<td>Cat paw-print SVG from MUD framework.</td>
</tr>
<tr>
<th><a href="./SVG/PeaceOut000.svg">./SVG/PeaceOut000.svg</a></th>
<td>Peace sign SVG image.</td>
</tr>
<tr>
<th><a href="./SVG/sem.svg">./SVG/sem.svg</a></th>
<td>wheel sem SVG image</td>
</tr>
<tr>
<th><a href="./SVG/Steren_Aranchy.svg" >./SVG/Steren_Aranchy.svg</a></th>
<td>hand-painted Anarchy symbol</td>
</tr>
<tr>
<th><a href="./countdown-timer-js.html" >./countdown-timer-js.html</a></th>
<td>countdown timer example in Javascript</td>
</tr>
<tr>
<th><a href="./clock-3utc.html">./clock-3utc.html</a></th>
<td>real-time UTC date & time display</td>
</tr>
<tr>
<th><a href="./SVG/the_clock.svg">./SVG/the_clock.svg</a></th>
<td>animated analog clock SVG</td>
</tr>
<tr>
<th><a href="./dirlisting.php">./dirlisting.php</a></th>
<td>directory listing example code - no links</td>
</tr>
<tr>
<th><a href="./circle-profile.html">./circle-profile.html</a></th>
<td>The radial profile eample</td>
</tr>
<tr>
<th><a href="./box+text+shadowex.html">./box+text+shadowex.html</a></th>
<td><code>text-shadow</code> and <code>box-shadow</code> examples</td>
</tr>
<tr>
<th>
<a href="./meta-elements.html">./meta-elements.html</a>
</th>
<td>
</td>
</tr>
<tr>
<th><a href="./svg-penta-ex.00.html">./svg-penta-ex.00.html</a></th>
<td></td>
</tr>
<tr>
<th><a href="./paw.html">./paw.html</a></th>
<td></td>
</tr>
<tr>
<th><a href="./cthulu.html">./cthulu.html</a></th>
<td></td>
</tr>
</table>
</div>
</body>
</html>