INPUT TEXT BOX
Run
<!DOCTYPE HTML>
<html>
    <head>
        <title>Working with text as Input</title>
        <style>
            input {
                padding:5px;
                margin-bottom: 20px;
            }
        </style>
    </head>
    <body>
        <form>
            <div>Enter your username:</div>
            <div><input type="text" name="username" autocomplete="off" maxlength="30" size="30"></div>
            <div>Enter Password:</div>
            <div><input type="password" name="pw"/></div>
            <div>Enter Profile Pic:</div>
            <div><input type="file" name="propic"/></div>
        </form>
    </body>
</html>