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

<!--
    Example for Week 14 - Lecture 2 - 2024-04-24
    
    by: Sharon Tuttle
    last modified: 2024-04-25

    you can run this using the URL:
    https://nrs-projects.humboldt.edu/~st10/s24cs328/328lect14-2/328lect14-2-play.html
-->

<head>
    <title> 328lect14-2 </title>
    <meta charset="utf-8" />

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

    <!-- 
        *   trying out a Date object to add today's date to this document 
        *   using async="async" to let browser know it is safe to download and
            execute this while the HTML for the rest of the document is being 
            downloaded and parsed
    -->

    <script src="todays-date.js" type="text/javascript"
           async="async"></script>
</head>

<body>
    <h1> Example for Week 14 Lecture 2 </h1>

    <p id="for_date"></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>