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

<!--
    Example from Week 7 Lecture 1, styled by our
    first CSS external style sheet!

    by: Sharon Tuttle
    last modified: 2025-03-05

    you can run this using the URL:
    https://nrs-projects.humboldt.edu/~st10/s25cs328/328lect07-1/328lect07-1.html
-->

<head>
    <title> trying out CSS </title>
    <meta charset="utf-8" />

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

    <!--
        adding this link element to also style this using 328lect07-1.css
        that is in the same directory as this page
    -->
    
    <link href="328lect07-1.css" type="text/css" rel="stylesheet" />
</head>

<body>
    <h1> CSS Atrocities </h1>

    <p> This is a paragraph. </p>

    <h2> a Sub-section of atrocities </h2>
    
    <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>