Pranav Notes
Pranav Notes
<head>
<title>FORMS</title>
</head>
<body style="background-color:pink";>
<h1 align="center"><b>FORMS</b></h1><br>
<h2 align="center">PERSONAL DETAILS </h2>
<form align="center">
<div>
<label style=" font-size:20" for:"fname">FIRST NAME:</label><br>
<input type="text" id="fname" name="fname"><br>
<label style=" font-size:20"for:"lname">LAST NAME:</label><br>
<input type="text" id="lname" name="lname"><br>
<label style=" font-size:20" for:"faddress">ADDRESS:</label><br>
<input type="text" id="faddress" name="faddress"><br>
</div>
</form>
<br>
<form align="center">
<div>
<h2 align="center">EDUCATIONAL QUALIFICATIONS</h2>
<label style=" font-size:20" for:"10th mark">X MARK:</label><br>
<input type="text" id="10th mark" name="10th mark"><br>
<label style=" font-size:20" for:"12th mark">XII MARK:</label><br>
<input type="text" id="12th mark" name="12th mark"><br>
<label style=" font-size:20" for:"UG mark">UG CGPA:</label><br>
<input type="text" id="UG mark" name="UG mark"><br>
</div>
</form>
<br>
<form align="center">
<div>
<h2 align="center">SUBJECT LIKE</h2>
<input type="radio" id="ACCOUNTANCY" name="subject" value="ACCOUNTANCY">
<label style=" font-size:20" for:"accountancy">Accountancy</label><br>
<input type="radio" id="ECOM" name="subject" value="ECOM">
<label style=" font-size:20" for="ecom">Ecommerce</label><br>
<input type="radio" id="C++" name="subject" value="C++">
<label style=" font-size:20" for="c++">Web designing</label>
</div>
</form>
<br>
<form align="center">
<div>
<h2 align="center">GAMES</h2>
<input type="checkbox" id="chess" name="chess" value="chess">
<label style=" font-size:20" for="chess">Chess</label><br>
<input type="checkbox" id="football" name="football" value="football">
<label style=" font-size:20" for="football">Football</label><br>
<input type="checkbox" id="cricket" name="cricket" value="cricket">
<label style=" font-size:20" for="cricket">Cricket</label><br>
<input type="checkbox" id="basketball" name="basketball" value="basketball">
<label style=" font-size:20" for="basketball">Basketball</label><br>
</div>
</forms>
<br>
<forms>
<input type="submit" value="submit">
</forms>
</body>
</html>