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

<!--
    from clicker question 2 in Week 7 Lecture 2
    
    by: Sharon Tuttle 
    last modified: 2016-03-02
-->

<head>  
    <title> clicker question 2 form </title>
    <meta charset="utf-8" />

    <link href="http://users.humboldt.edu/smtuttle/styles/normalize.css" 
          type="text/css" rel="stylesheet" />
</head> 

<body> 

   <h1> Form from Week 7 Lecture 2 second clicker question </h1>

   <form method="post"
         action="http://nrs-projects.humboldt.edu/~st10/328lab07-2/looky.php">
        <label> Type something: 
                <input type="text" name="burp" 
                       value="boo" /> </label> <br />
        <input type="submit" />
    </form>

<?php
    require_once("328footer.txt");
?>