Survey Data Collection:
With the application of probability sampling in the 1930s, surveys became a standard tool for empirical research in social sciences, marketing, and official statistics. The methods involved in survey data collection are any of several ways in which data can be collected for a statistical survey. First, there was the change from traditional paper-and-pencil interviewing(PAPI) to computer-assisted interviewing(CAI). Now, face-to-face surveys(CAPI), telephone surveys(CATI), and mail surveys(CASI, CSAQ) are increasingly replaced by web surveys
In this post, we will make a basic survey form with the help of HTML. In this post, we just use HTML but not CSS. You can make a style change as you want.
HTML:
<!DOCTYPE HTML>
<html>
<head>
<title>Survey</title>
</head>
<body>
<h1>Survey form</h1>
Enter your name:
<input type="text" name="UserName" size=35 maxlength=35 value="">
</br></br>
Enter your email:
<input type="text" name="Deptt" size=35 maxlength=35 value=""> </br> </br>
Describe yourself:
<textarea name="Comments" cols=30 rows=4></textarea> </br> </br>
Do you have any laptop?
<input type="radio" name="exe" value=1>Yes
<input type="radio" name="exe" value=2>No
</p>
What you like most
<p>
<input type="checkbox" name="Books">Web design
<input type="checkbox" name="Web">Android development
<input type="checkbox" name="Phone">Data science
<input type="checkbox" name="Magazines">Machine learning
</p>
What is your favourite language ?
<select name="moviepref">
<option>
<option value=1 selected="true">JAVASCRIPT
<option value=2>HTML/CSS
<option value=3>Python
<option value=4>SQL
<option value=5>JAVA
</select>
</br></br>
<input type=submit value="Submit form">
</div>
</body>
</html>
Comments
Post a Comment