[ Prev ]
2022-09-12

-- Sep 7 In-Class Exercise Thread
<head>
    <title>Soiree</title>
</head> <body>
    <h1>Let me know if you'll be here</h1>
    <form>
        <p>
            <label for="firstname">First Name: </label>
            <input type="text" name="first name" placeholder="First Name">
        </p>
        <p>
            <label for="lastname">Last Name: </label>
            <input name="last name" placeholder="Last Name">
        </p>
        <p>
            <label>Will you be all alone? (If yes check the box) </label>
            <input type="checkbox">
        </p>
        <p>
            <label for="jelly color">What color jelly do you prefer?</label>
        </p>
        <p>
            <label for="red">Red</label>
            <input type="radio" id="color" name="color">
        </p>
        <p>
            <label for="yellow"> Green</label>
            <input type="radio" id="color" name="color">
        <p>
            <label for="green"> Blue</label>
            <input type="radio" id="color" name="color">
        </p>
    </form>
</body> </html>
<head> <title>Soiree</title> </head> <body> <h1>Let me know if you'll be here</h1> <form> <p> <label for="firstname">First Name: </label> <input type="text" name="first name" placeholder="First Name"> </p> <p> <label for="lastname">Last Name: </label> <input name="last name" placeholder="Last Name"> </p> <p> <label>Will you be all alone? (If yes check the box) </label> <input type="checkbox"> </p> <p> <label for="jelly color">What color jelly do you prefer?</label> </p> <p> <label for="red">Red</label> <input type="radio" id="color" name="color"> </p> <p> <label for="yellow"> Green</label> <input type="radio" id="color" name="color"> <p> <label for="green"> Blue</label> <input type="radio" id="color" name="color"> </p> </form> </body> </html>
X