0% found this document useful (0 votes)
2 views1 page

HTML Program Answer

The document contains an HTML program that creates a simple login form for a web page. It includes fields for username and password, along with a login button. The code is designed to run in a web browser.

Uploaded by

mycomputer23123
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

HTML Program Answer

The document contains an HTML program that creates a simple login form for a web page. It includes fields for username and password, along with a login button. The code is designed to run in a web browser.

Uploaded by

mycomputer23123
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Answer

The given code is an HTML program. It is used to create a simple login form on a web page and
runs in a web browser.

Program Code:
<!DOCTYPE html>
<html>
<head>
<title>Login Form</title>
</head>
<body>

<form>
Username: <input type="text"><br><br>
Password: <input type="password"><br><br>
<input type="button" value="Login">
</form>

</body>
</html>

You might also like