You are on page 1of 4

JAVA IN WEB TECHNOLOGIES

EXPERIMENT 3
Aim:
Apply different font styles, font families, font colors and other formatting Styles to the above static
web pages.

login.html

<html>
<head>
<title>Login page</title>
</head>
<body>
<center>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&
nbsp;
<div class="content">
<form>
<u>
<h3>LOGIN PAGE</h3>
</u>
<fieldset style="background-color:#ffa07a; margin-left:500;margin-right:500;">
<label>EMAIL ID:</label>
<input type="email" id="em" placeholder="enter e-mail"><br>
<br>
<label>PASSWORD:</label>
<input type="password" id="pw" placeholder="enter password"><br>
<br>
<input type="submit" onclick="check()"
value="Login">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="submit" value="Forgot password">
<br>
<br>
</fieldset>
</form>
</div>
</center>
</body>
</html>

Registration.html

Name:A.V.NARASIMHA Jntu No.: 19341A0508 1


JAVA IN WEB TECHNOLOGIES

<html>
<head>
<title>Registration page</title>
</head>
<body><center>
<u>
<h1><marquee>REGISTRATION PAGE</marquee></h1>
<body bgcolor="Lightpink">
<center><fieldset style="background-color:lavender; margin-left:300;margin-right:300;">
</u>
<div class="main">
<div class="register">
<form name="Register" method="post" onsubmit="return check()">
<label>FIRST NAME: </label>
<br>
<input type="text" name="fname" id="first" placeholder="enter first name">
<br>
<br>
<label>LAST NAME: </label>
<br>
<input type="text" name="lname" id="last" placeholder="enter last name">
<br>
<br>
<label>FATHER NAME: </label>
<br>
<input type="text" name="faname" id="fname" placeholder="enter father name">
<br>
<br>
<label>MOTHER NAME: </label>
<br>
<input type="text" name="mname" id="name" placeholder="enter mother name">
<br>
<br>
<label>EMAIL ID:</label>
<br>
<input type="email" name="email" id="email" placeholder="enter e-mail">
<br>
<br>
<label>PHONE NUMBER: </label>
<br>

Name:A.V.NARASIMHA Jntu No.: 19341A0508 2


JAVA IN WEB TECHNOLOGIES
<input type="tel" name="phonenumber" id="phonen" placeholder="enter mobile number">
<br>
<br>
<label>GENDER: </label>
<br>
<input type="radio" name="gender" id="male">
<span id="male">MALE</span>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;
<input type="radio" name="gender" id="female">
<span id="female">FEMALE</span>
&nbsp;&nbsp;
<br>
<br>
<input type="submit" value="submit" onclick="check()"><br>
<br>
</form>
</div>
</div>
</center>
</body
</html>

Name:A.V.NARASIMHA Jntu No.: 19341A0508 3


JAVA IN WEB TECHNOLOGIES

Name:A.V.NARASIMHA Jntu No.: 19341A0508 4

You might also like