-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (61 loc) · 2.59 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form</title>
</head>
<body>
<h1 align="center">Survey Form</h1>
<p align="center">Personal Details</p>
<br>
<section align="center">
<label for="name">Name: </label>
<input type="text" id="name">
<br><br>
<label for="email">Email: </label>
<input type="email" id ="email">
<br> <br>
<label for="experience">Work experience: </label>
<input type ="text" id ="experience">
<br><br>
<label for="choose">Are you comfortable in investing in real estate<br> on platform without first investigating properly: </label>
<select name="yes/no" id="choose">
<option value="yes">Yes</option>
<option value="no">No</option>
<option value="none">None</option>
</select>
<br><br>
<label for="review">Suggestions to build trusted platform:</label>
<textarea id ="review" rows="10" cols="30"></textarea>
<br><br>
<label>You are ready to invest in: </label>
<input type="checkbox" id ="opt1" name ="options" value ="opt1">
<label for="opt1">Real Estate</label>
<br>
<input type="checkbox" id ="opt2" name ="options" value="opt2">
<label for="opt2">Mutal Funds</label>
<br>
<input type="checkbox" name ="options" value ="opt3" id ="opt3">
<label for="opt3">Crypto Currency</label><br>
<input type="checkbox" name ="options" value ="opt4" id ="opt4">
<label for="opt4">Stocks & Bonds</label>
<br><br>
<label>Are you ready for further contact?</label>
<input type ="radio" id ="choosey" name="options" value="opt1">
<label for ="choosey">Yes</label>
<br>
<input type ="radio" id ="choosen" name="options" value="opt2">
<label for ="choosen">No</label>
<br><br><br>
<input type="submit">
</section>
</body>
</html>