-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGoodVibesForm.html
72 lines (72 loc) · 2.08 KB
/
GoodVibesForm.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
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title> HTML </title>
<link rel ="stylesheet" href="goodvibesform.css"/>
</head>
<body>
<center>
<h1> Good Vibes Form </h1>
<h4> Tell us something positive that happened to you today </h4>
</center>
<div class="div-style">
<form>
<table style="width:50%">
<tr>
<td>Name </td>
<td><input name="Name" placeholder= "Enter your Name" required> </td>
</tr>
<tr>
<td>Email </td>
<td><input name="Email" placeholder="Enter your email address" required> </td>
</tr>
<tr>
<td> <label> On scale of 1-10, how good was it? </label> </td>
<td> <input type="number" placeholder="Select between 1-10"> </td>
</tr>
<tr>
<td> Where did it happen? </td>
<td>
<select>
<option> Select </option>
<option> option 1 </option>
<option> option 2 </option>
<option> option 3 </option>
</select>
</td>
</tr>
<tr>
<td> <label>Date</label> </td>
<td> <input type="date"> </td>
</tr>
<tr>
<td> <label> At what time of the day did it happen?</label> </td>
<td>
<input type="radio" name="Morning-Afternoon-Evening"> <label>Morning</label><br>
<input type="radio" name="Morning-Afternoon-Evening"> <label>Afternoon</label><br>
<input type="radio" name="Morning-Afternoon-Evening"> <label>Evening</label><br>
</td>
</tr>
<tr>
<td> What emotions did you experience ? <br> (select all that apply) </td>
<td>
<input type="checkbox"> <label>Excited</label><br>
<input type="checkbox"> <label>Humbled</label><br>
<input type="checkbox"> <label>Loved</label><br>
<input type="checkbox"> <label>Ethusaistic</label><br>
<input type="checkbox"> <label>Elited</label><br>
</td>
</tr>
<tr>
<td> Please describe your positive experience. </td>
<td> <textarea style="resize:vertical "rows="2" cols="15" required> </textarea> </td>
</tr>
</table>
<br>
<center>
<button class="button" id="submit" type="submit">Submit</button>
</center>
</form>
</div>
</body>
</html>