0% found this document useful (0 votes)
24 views

Exp 3

Uploaded by

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

Exp 3

Uploaded by

Divye Kapoor
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-
scale=1.0">
<title>Login Page</title>
<style>
body{ margin: 0px; padding: 0px; box-sizing:
border-box;}
div{ margin-top: 20px;}
table{ background-color: antiquewhite;}
table caption{ padding: 20px;}
.input{ width: 400px; padding: 10px;}
.btn{ padding: 5px 20px; margin: 0px 5px;
border-radius: 5px;}
label{ font-weight: bold;}

</style>
</head>
<body>
<div>
<form>
<table width="auto" border="0"
align="center" cellspacing="10px"
cellpadding="10px">
<caption><strong>Login Page</strong>
</caption>

<tr>
<td><label>User Name:</label></td>
<td></td>
<td><input type="text"
placeholder="Enter User Name"
class="input"/></td>
</tr>

<tr>
<td><label>Password:</label></td>
<td></td>
<td><input type="password"
placeholder="Enter Password"
class="input"/></td>
</tr>

<tr>
<td></td>
<td></td>
<td>
<input type="submit" class="btn">
<input type="reset" class="btn">
</td>

</tr>

</table>
</form>

</div>
</body>
</html>

You might also like