HTML PROGRAM FOR SURVEY PAGE.
Here we can create 3 html files.
1. S1.html
2. S2.html
<html>
<head>
<title>SURVEY</title>
<style>
.button{font-size:16px;
background-color:red;
color: black;
padding:2%;
height:5%;
width:90%;
}
select{width: 40%;
}
</style>
</head>
<body bgcolor="orange">
<form action="/storage/emulated/0/html/S3.html">
1.Your favorite actor :<br>
<select >
<option>Select Actor</option>
<option>Salman Khan</option>
<option>Amir Khan</option>
<option>Sahrukh Khan</option>
<option>Akshay Kumar</option>
<option>Ritik Roshan</option>
<option>varun Dhavam</option>
<option>Tiger shroff</option>
</select><br><br>
2.Your favorite actress :<br>
<select>
<option>Select Actress</option>
<option>Sai Pallavi</option>
<option>Dipika Padukon</option>
<option>Sonakshi Sinha</option>
<option>Katrina Kaif</option>
<option>Anushka Sharma</option>
<option>Tapsi Pannu</option>
<option>Kangana Ranavat</option>
</select><br><br>
3.Your favorite film :<br>
<select>
<option>Select Film</option>
<option>3 Idiots</option>
<option>PK</option>
<option>Dabang 3</option>
<option>Housefull 4</option>
<option>Fida</option>
<option>chhapaak</option>
<option>Luka Chupi</option>
</select><br><br>
4.Your favorite director :<br>
<select>
<option>Select Director</option>
<option>Rohit Shetty</option>
<option>Karan Johar</option>
<option>Sanjay Bansali</option>
<option>Abbas Mustan</option>
</select><br><br>
5.Your favorite genre :<br>
<select>
<option>Select Genre</option>
<option>Action</option>
<option>Comedy</option>
<option>Romantic</option>
<option>Horror</option>
</select><br><br>
6.Your favorite male singer :<br>
<select>
<option>Select Singer</option>
<option>Arijit Singh</option>
<option>Akhil</option>
<option>Gulzar Chhaniwala</option>
<option>Jassi Gill</option>
<option>Guru Randhawa</option>
<option>Kishor Kumar</option>
<option>Badshah</option>
</select><br><br>
7.Your favorite female singer :<br>
<select>
<option>Select Singer</option>
<option>Neha Kakkar</option>
<option>Shreya Ghoshal</option>
<option>Mamta Sharma</option>
<option>Sunanda Sharma</option>
<option>Lata Mangeshkar</option>
<option>Asha Bhosale</option>
<option>Kanika Kapoor</option>
</select><br><br>
8.Your Favorite Song :<br>
<select>
<option>Select Song</option>
<option>Nile Nile Amber Par</option>
<option>Moto Song</option>
<option>Photo</option>
<option>Ishq Tera</option>
<option>Kasoote</option>
<option>Bekhayali</option>
<option>Illegal Weapon 2.0</option>
</select><br><br>
9.How often do you visit the cinema?<br>
<select>
<option>Select</option>
<option>Never</option>
<option>Once a year</option>
<option>once a month</option>
<option>2-5 times a month</option>
</select><br><br>
<input type="submit"class="button">
</form>
</body>
</html>
3. S3.html
Comments
Post a Comment