-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestbed.html
61 lines (58 loc) · 1.76 KB
/
testbed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h3>Using GhostScript to edit HTML</h3>
<p>Paragraph text. <strong>Lorem</strong> ipsum <a href="#">dolor sit amet</a>, <em>consectetur adipisicing</em> elit, sed do <strong><em>eiusmod tempor</em></strong> incididunt ut labore et dolore magna aliqua.</p>
<h4>Lists</h4>
<h5>Unordered list</h5>
<ul>
<li>Bullet</li> TODO <ul>
<li>Sub-bullet</li>
<li>Sub-bullet</li>
</ul>
<li>Bullet</li>
</ul>
<h5>Ordered list</h5> TODO <li>Numbered list</li>
<ol>
<li>Sub-list item</li>
<li>Sub-list item</li>
</ol>
<li>Numbered list</li>
<h4>Tables</h4>
<table>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Email</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Fred</td>
<td>Nurk</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jane</td>
<td>Doe</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
<tr>
<th scope="row">3</th>
<td>Incog</td>
<td>Ingognito</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
</tbody>
</table>
</body>
</html>