<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">

<!--
    In-class examples for Week 2 Lecture 2

    by: Sharon Tuttle
    last modified: 2026-01-28

    you can run this using the URL:

    https://nrs-projects.humboldt.edu/~st10/s26cs328/328lect02-2/328lect02-2.html

-->

<head>
    <title> CS328 Week 2 Lecture 2 Examples </title>
    <meta charset="utf-8" />

    <link href="https://nrs-projects.humboldt.edu/~st10/styles/normalize.css"
          type="text/css" rel="stylesheet" />

</head>

<body>
    <h1> Trying out some HTML elements </h1>

    <p> Here is our <a href="../328lect02-1/html-0.html">first HTML page
        </a> from Monday. </p>

    <p>
        Look!
        A
        paragraph!
    </p>

    <p> MOO says the cow! </p>

    <hr />

    <p> A paragraph of one's content should be in a p element.
        Content in a strict-style HTML body should be within
        some appropriate block element, and a p element is
        often appropriate. </p>

    <footer>
    <hr />
    <p>
        Validate by pasting .xhtml copy's URL into<br />
	<a href="https://validator.w3.org/nu">
            https://validator.w3.org/nu
        </a>
	or  
        <a href="https://html5.validator.nu/">
            https://html5.validator.nu/
        </a>
    </p>
    </footer>
</body>
</html>