Web Technologies - Old Questions

6.  Write an HTML code to display the following:

                   

5 marks | Asked in 2071

<!DOCTYPE html>

<html>

<head>

<title>Login Form</title>

    <style>

        #form1{border: 1px solid; padding: 20px; width: 300px;}

    </style>

</head>

<body>

<form id="form1">

<label>Username:</label>

<input id="txtUserName" type="text" /><br /><br />

<label>Password:</label>

<input id="txtPassword" type="text" /><br /><br />

<input type="button" value="Login" />

</form>

</body>

</html>