Experiment-13: Aim: - Write HTML Code For These Three Webpages

You might also like

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

EXPERIMENT-13

Aim: - WRITE HTML CODE FOR THESE THREE WEBPAGES:

 HOMEPAGE OF JECRC UNIVERSITY


 REGISTRATION FORM
 TIME TABLE

HOME PAGE

HTML CODE:-

<html>

<head>

<title>first home page</title>

</head>

<style>

body{

background-size:1350px 650px;

background-repeat:no-repeat;

</style>

<body background="C:\Users\student\Desktop\jecrc.jpg">

<h1 align="right"><font color="4">To register in JECRC

University<br>

click on<input type="submit" value="sign up">

</form>

</font>

</h1>

</body>

</html>
REGISTRATION FORM

HTML CODE:-
<html>

<head>

<title>JECRC University</title>

</head>

<body>

<h1>Registration Form</h1>

<p>Enter details</p>

<form action="/action_page.php">

<div>

<br>

<label><b>Name</b></label>

<input type="text" placeholder="Student Name" name="name"

required>

<br>

<br>

<label><b>Mobile No.</b></label>

<input type="text" placeholder="Enter Mobile No." mob="mobile"

required>

<br>

<br>

<label><b>Date of Birth</b></label>
<input type="text" placeholder="Enter date of birth" name="DOB"

required>

<br>

<br>

<p>What is your gender?</p>

<input type="radio" name="gender" value="male"> Male

<input type="radio" name="gender" value="female"> Female

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

<br>

<br>

<label><b>Father's Nmae</b></label>

<input type="name" placeholder="Father's Name" name="name"

required>

<br>

<br>

<label><b>Mother's Name</b></label>

<input type="name" placeholder="Mother's Name" name="name"

required>

<br>

<br>

<label><b>Father's Mobile No.</b></label>

<input type="text" placeholder="Father's Mobile No." name="number"


required>

<br>

<br>

<label><b>Mother's Moblie No.</b></label>

<input type="text" placeholder="Mother's Mobile No." name="number"

required>

<br>

<br>

<label><b>Address</b></label>

<input type="text" placeholder="Address" name="text"

required>

<br>

<br>

<input type="checkbox" checked="checked"> Remember me

<p>By creating an account you agree to our <a href="#">Terms & Privacy</a>.</p>
<div class="clearfix">

<button type="button" class="cancelbtn">Cancel</button>

<button type="submit" class="signupbtn">Sign Up</button>

</div>

</div>

</form>

</body>

</html>

You might also like