0% found this document useful (0 votes)
16 views2 pages

Style Name: Practical No - 6 - Create Web Page Using Form Element

This document contains an HTML form with various input elements like text fields, radio buttons, checkboxes, a dropdown menu and a textarea to collect user information like name, email, gender, coding language preferences, college and feedback. The form allows users to submit or reset the form.

Uploaded by

chimupappu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views2 pages

Style Name: Practical No - 6 - Create Web Page Using Form Element

This document contains an HTML form with various input elements like text fields, radio buttons, checkboxes, a dropdown menu and a textarea to collect user information like name, email, gender, coding language preferences, college and feedback. The form allows users to submit or reset the form.

Uploaded by

chimupappu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

PRACTICAL NO - 6 .

CREATE WEB PAGE USING FORM ELEMENT

<html>
<body style="background-color:cyan">
<form name="Masugod">
<h2>GP Beed Survey Form<h2><br>
Your Name:<br>
<input type="text" name="name" id="tf1"><br><br>
Your Email:<br>
<input type="email" name="email" id="tf2"><br><br>
Your Mobile Number:<br>
<input type="number" name="number" id="tf3"><br><br>
Select Gender:<br>
<input type="radio" name="gender" value="male">Male
<input type="radio" name="gender" value="female">Female<br><br>
Favourite Coding Language:<br>
<input type="checkbox" name="c1" value="C Lang">C Lang
<input type="checkbox" name="c2" value="C++">C++
<input type="checkbox" name="c3" value="Java">Java
<input type="checkbox" name="c4" value="Python">Python<br><br>
Select Your College:<br>
<select name="college">
<option value="GPB">GPB</option>
<option value="GPP">GPP</option>
<option value="GPT">GPT</option>
<option value="GPA">GPA</option>
</select><br><br>
Feedback:<br>
<textarea name="ta1" rows="10" cols="15"></textarea><br><br>
<input type="submit" value="SUBMIT">
<input type="reset" value="RESET">
</form>
</body>
</html>

OUTPUT :

You might also like