-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.html
91 lines (83 loc) · 3.05 KB
/
data.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>💾</text></svg>">
<link rel="stylesheet" href="main.css">
<title>Data</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="./index.html">about</a></li>
<li><a href="./typography.html">typography</a></li>
<li><a href="./media.html">media</a></li>
<li><a href="./interactive.html">interactive/input</a></li>
<li><a href="#">data</a></li> <!-- # => active -->
</ul>
</nav>
</header>
<main>
<section class="bordered">
<span class="indicator">Progress</span>
<progress value="50" min="0" max="100">50%</progress>
<meter max="1.0" min="0.0" value="0.5" high="0.75" low="0.25" optimum="0.5">75%</meter>
</section>
<section class="bordered">
<span class="indicator">Document</span>
<div class="object-box">
<object data="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf"></object>
</div>
<div class="embed-box">
<embed src="./jonecss.css" type="audio/mpeg" height="60" width="144">
</div>
</section>
<section class="bordered">
<span class="indicator">Table</span>
<div class="overflow-x-auto">
<table>
<caption>Table Caption</caption>
<colgroup>
<col span="1">
<col span="2">
</colgroup>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>Footer 1</td>
<td>Footer 2</td>
</tr>
</tfoot>
</table>
</div>
</section>
</main>
<footer>
<address>
Email: <a href="[email protected]">[email protected]</a><br>
</address>
<time datetime="">
<script> document.write(new Date); document.querySelector("time").setAttribute("datetime", new Date) </script>
</time> <br>
<a href="https://github.com/jonasfroeller/JoneCSS">JoneCSS</a> <cite>by Jonas Fröller</cite>
</footer>
</body>
</html>