<html>
<head>
    <title>We Arrive Here</title>
</head>
<body>

<p id="greeting">Success!</p>

<div>
    <h1>List of stuff</h1>
    <ol>
        <li class="items">Item 1</li>
        <li>Item 2</li>
    </ol>
</div>
<div>
    <h1>Almost empty</h1>
</div>

<script language="Javascript">
    document.write("<p>Window name is: " + window.name + "</p>");
</script>

</body>
</html>