divForm.html 965 Bytes
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8" />
    <title>test extra form</title>
    <style>
        input[type="text"] ,input[type="email"]{
            border: 1px solid blue;
        }
    </style>
</head>

<body>
    <form>
        <div>
            <label for="nickname">Your nickname:</label>
        </div>
        <div>
            <input type="text" id="nickname" name="nickname">
        </div>
        <div>
            <label for="user-email">Your e-mail:</label>
        </div>
        <div>
            <input type="email" id="user-email" name="user-email">
        </div>
        <div>
            <label for="content">Content:</label>
        </div>
        <div>
            <textarea rows="10" cols="50" id="content"  name="content" placeholder="Enter a comment here. Be nice and polite!"></textarea>
        </div>
        <div>
            <input type="submit" value="Add">
        </div>
    </form>              
</body>

</html>