Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Web technology

Lab Assignment
1.Design a HTML form for Password Reset?
<html>

<body>

<h2>RESET PASSWORD<h2>

<form>

<label for="newPassword">New Password:</label>

<input type="password" id="newPassword" name="newPassword" title="New password" <br><br>

<label for="confirmPassword">Confirm Password:</label>

<input type="password" id="confirmPassword" name="confirmPassword" title="Confirm new password"<br><br

<p class="form-actions">

<input type="submit" value="Change Password" title="Change password" />

</p>

</form>

</body>

</html>

Output:
2.Design a HTML Registration Form for Facebook.
<!DOCTYPE html>

<html lang="en">

<head>

<title>Facebook Registration form</title>

<style>

h1 {

color: brown;

</style>

</head>

<body>

<h1>Register for Facebook by Filling the Below Form:</h1>

<form>

<h2>Enter Your Details</h2>

Enter Your Name:<input type="text"><br>

<form>

<p>Enter Your Gender</p>

<input type="radio" name="gender">Male<br>

<input type="radio" name="gender">Female<br>

<input type="radio" name="gender">Other<br><br>

</form>

Enter Your Phone Number:<input type="number" required><br><br>

Enter Your Email address:<input type="email"><br><br>

Enter your password:<input type="password"><br><br>

Confirm Password:<input type="password"><br><br>

<p>Enter Your Interest</p>

<input type="checkbox">Sports<br>

<input type="checkbox">Entertaiment<br>

<input type="checkbox">Technology<br>

<input type="checkbox">Politics<br>

<input type="checkbox">Coding<br><br>

<a href="final.html"><input type="submit" value="Submit"></a>

</form>

<p>By: ARJUN.LG</p>
</body>

</html>

Output :

3.Design a survey form for the study of Computer knowledge among villagers.
<!DOCTYPE html>

<html lang="en">

<head>

<title>Computer Knowledge Survey</title>

</head>

<body>

<form>

<h1>Computer knowledge Survey</h1>

Enter your Name:<input type="text"><br><br>

Enter Your Village Name:<input type="text"><br><br>

<p>Electricity Convenience:</p>

<input type="radio" name="Question">Yes

<input type="radio" name="Question">No<br><br>

Enter the distance between town and your home:<input type="number"

min=100><br>

<p>Highest Qualification that you have completed:</p>

<input type="radio" name="Qualification">SSLC<br>


<input type="radio" name="Qualification">2nd PUC<br>

<input type="radio" name="Qualification">Degree<br>

<input type="radio" name="Qualification">other course<br>

<p>Highest Qualification achieved in:</p>

<input type="radio" name="Computer">Computer Science<br>

<input type="radio" name="Computer">Non-Computer Science<br>

<p>Have basic in Computer Science</p>

<input type="radio" name="Question">Yes

<input type="radio" name="Question">No<br><br>

<p>Select the basic that you known:</p>

<input type="checkbox">Basic editing in computer<br>

<input type="checkbox">Typing<br>

<input type="checkbox">Data entry<br>

<input type="checkbox">PPT Creation<br><br>

<input type="submit" value="Submit">

</form>

</body>

</html>

Output :

Name : Arjun.LG

REG NO: MY.SC.I5MCA19055

Class: INT MCA SEM 4

You might also like