Adl Exp1,2
Adl Exp1,2
Adl Exp1,2
Title:- Create html pages for website like login, registration and about us pages.
<!DOCTYPE html>
<html>
<head>
<style>
</style>
</head>
<body>
<center>
<form>
<div class="container">
<label>Username : </label>
<label>Password : </label>
</div>
</form>
</center>
</body>
</html>
Experiments: 02
Title:- Apply and design the created HTML pages using CSS.
<!DOCTYPE html>
<html>
<head>
<style>
body{
background-color: pink;
.container {
padding-top: 10px;
padding-right: 50px;
padding-le : 50px;
background-color: lightblue;
width: 100%;
padding: 15px;
display: inline-block;
border: none;
background: #f1f1f1;
input[type=text]:focus, input[type=password]:focus {
background-color: orange;
outline: none;
div {
padding: 10px 0;
}
hr {
.registerbtn {
background-color: #4CAF50;
color: white;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
.registerbtn:hover {
opacity: 1;
</style>
</head>
<body>
<form>
<div class="container">
<label for="email"><b>Email</b></label>
<label for="psw"><b>Password</b></label>
</form>
</body>
</html>