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

<!--
    Spring 2024 - CS 328 - Week 8 Lab Exercise - Part 2

    by: Sharon Tuttle
    adapted by: PUT YOUR NAMES HERE

    last modified: 2024-03-08

    adapted from the example at:
    https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout

    you can run this using the URL:
    PUT YOUR VERSION's URL HERE
-->

<head>
    <title> CSS grid play </title>
    <meta charset="utf-8" />

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

</head>

<body>

    <div class="wrapper">
        <div class="one">One</div>
        <div class="two">Two</div>
        <div class="three">Three</div>
        <div class="four">Four</div>
        <div class="five">Five</div>
        <div class="six">Six</div>
        <div class="seven">Seven</div>
    </div>

    <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>