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
| <!DOCTYPE html>
| <html>
| <body>
|
| <h1>This is a test page for node 70-HTML</h1>
|
| <p>There's nothing to read here.</p>
|
| <ol id="colours">
| <li>Blue</li>
| <li>Red</li>
| </ol>
|
| <ul id="fruits">
| <li>Apple</li>
| <li>Pear</li>
| </ul>
|
| <ul id="vegetables">
| <li>Potato</li>
| <li>Parsnip</li>
| </ul>
|
| <span>
| <img src="foo.png">
| </span>
|
| </body>
| </html>
|
|