<!DOCTYPE html>

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

<!--
    by: Sharon Tuttle
    last modified: 2024-01-31

    you can run this using the URL:

    https://nrs-projects.humboldt.edu/~st10/s24cs328/328lect03-2/328lect03-2-play.html
-->

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

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

<body>

    <h1> Examples from Week 3 Lecture 2 </h1>

    <table>
        <caption> examples of good Arcata things </caption>
	<tr> <th scope="row"> ice cream </th>
	     <td> Arcata Scoop </td> </tr>
	<tr> <th scope="row"> chocolate </th>
	     <td> Drake's Glen </td> </tr>
    </table>

    <form action="https://nrs-projects.humboldt.edu/~st10"
          method="get">
        <fieldset>
	    <legend> Please try this </legend>
	    <label for="lname"> Last Name: </label>
	    <input type="text" name="lastName" id="lname" />
            <input type="submit" name="looky" value="Enter Something" />
	</fieldset>
    </form>

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