27 lines
623 B
HTML
27 lines
623 B
HTML
|
<!--
|
||
|
This test case represents HTML…
|
||
|
-->
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>This is a title</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div>
|
||
|
<p>This is the first paragraph.</p>
|
||
|
<p>Now now, second paragraph?</p>
|
||
|
<div>
|
||
|
<p>I'm nested in a div.</p>
|
||
|
<ul>
|
||
|
<li>List item one.
|
||
|
<li>List item two. There isn't a third. Hahaha.</li>
|
||
|
</ul>
|
||
|
<p>Because, you know, lists should have a minimum of three items.</p>
|
||
|
</div>
|
||
|
<p>Penultimate paragraphs are sometimes the best.</p>
|
||
|
</div>
|
||
|
<p>Don't Cray; Buy Amiga!</p>
|
||
|
</body>
|
||
|
</html>
|