0% found this document useful (0 votes)
7 views1 page

Project 1

The document is an HTML survey form that collects user information including name, email, age, and a description of the user. It also allows users to select programming languages they know and provide comments or suggestions. The form includes various input types such as text fields, a dropdown menu, checkboxes, and a textarea for comments.

Uploaded by

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

Project 1

The document is an HTML survey form that collects user information including name, email, age, and a description of the user. It also allows users to select programming languages they know and provide comments or suggestions. The form includes various input types such as text fields, a dropdown menu, checkboxes, and a textarea for comments.

Uploaded by

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

<html>

<head>
<title>Survey Form</title>
</head>
<body>

<h1>Survey Form</h1>

<form>
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" placeholder="Enter your name"><br><br>

<label for="email">Email:</label><br>
<input type="email" id="email" name="email" placeholder="Enter your
email"><br><br>

<label for="age">Age:</label><br>
<input type="number" id="age" name="age"><br><br>

<label for="option">Which option best describes you?</label><br>


<select id="option" name="option">
<option value="student">Student</option>
<option value="professional">Professional</option>
<option value="other">Other</option>
</select><br><br>

<label>Languages and Frameworks known (Check all that apply):</label><br>


<input type="checkbox" id="c" name="language" value="C">
<label for="c">C</label><br>
<input type="checkbox" id="cpp" name="language" value="C++">
<label for="cpp">C++</label><br>
<input type="checkbox" id="java" name="language" value="Java">
<label for="java">Java</label><br>
<input type="checkbox" id="javascript" name="language" value="JavaScript">
<label for="javascript">JavaScript</label><br><br>

<label for="comments">Any comments or suggestions:</label><br>


<textarea id="comments" name="comments" rows="5" cols="40"></textarea><br><br>

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


</form>

</body>
</html>

You might also like