BASIC FORM EXAMPLE
Run
<!doctype html>
<html>
    <head>
        <title>
            Example of Form tag
        </title>
    </head>
    <body>
        <h2>Simple Form</h2>
        <form>
            <div>Enter your Name:</div>
            <div><input type="text" name="name"/></div>
            <div>Share something about yourself:</div>
            <div><textarea name="bio"></textarea></div>
            <div>
                I like:
                <select>
                    <option>Football</option>
                    <option>Cricket</option>
                    <option>Hockey</option>
                </select>
            </div>
            <div><input type="submit" value="Submit"/></div>
        </form>
    </body>
</html>