Monday, December 17, 2012

Form in HTML 5

<!DOCTYPE html> 
<html>
    <head>
        <title>
            HTML Form
        </title>
    </head>
    <body>
        <form action="in.php" method="POST">
            Name:<input type="text" name="usrname">
            Password: <input type="password" name="psw">
            <input type="submit" value="Log in">
        </form>
    </body>
</html>

No comments:

Post a Comment