-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
58 lines (53 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=1, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>DOM Viewer</title>
</head>
<body>
<div>
<h1 class="head header heading large heading" newAttr="has no value">
HTML Viewer
</h1>
<p>
You can see the content of this <strong>awesome</strong> page below.
Each <span>element</span> can be seen in a cirlce its <strong>children and <span>attributes</span> </strong>
</p>
<table>
<thead>
<tr>
<th>test 1</th>
<th>test 2</th>
<th>test 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>Foo x 1</td>
<td>Foo x 2</td>
<td>Foo x 3</td>
</tr>
<tr>
<td>Foo y 1</td>
<td>Foo y 2</td>
<td>Foo y 3</td>
</tr>
<tr>
<td>Foo z 1</td>
<td>Foo z 2</td>
<td>Foo z 3</td>
</tr>
</tbody>
</table>
</div>
<hr>
<canvas id="canvas" height="1500px">
</canvas>
<img src="img/save.png" alt="save" style="display: none;" id="save-img">
<script src="js/config.js"></script>
<script src="js/node.js"></script>
<script src="js/script.js"></script>
</body>
</html>