-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAufgabe 2.2.html
98 lines (97 loc) · 3.79 KB
/
Aufgabe 2.2.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<html>
<head>
<style>
#content{
background-color: turquoise;
text-align: center;
padding: 5px;
}
#content-box{
background-color: lightgray;
padding-top: 20px
}
table{
text-align: center;
width:100%;
}
.leftColumn{
text-align: right;
padding-right: 10px;
}
.rightColumn{
text-align: left;
}
td{
padding-top: 5px
}
</style>
</head>
<body>
<div id="content">
<h1>Dr. Noman Borlaug</h1>
<div id="content-box">
Let us Know how we can improve freeCodeCamp
<table>
<tr>
<td class="leftColumn">*Name:</td>
<td class="rightColumn">
<input type="text" placeholder="Enter your name">
</td>
</tr>
<tr>
<td class="leftColumn">*Email:</td>
<td class="rightColumn">
<input type="text" placeholder="Enter your Email">
</td>
</tr>
<tr>
<td class="leftColumn">*Age:</td>
<td class="rightColumn">
<input type="text" placeholder="Enter your name">
</td>
</tr>
<tr>
<td class="leftColumn">Which option best describes your durrent role?</td>
<td class="rightColumn">
<select>
<option>Student</option>
<option>Teacher</option>
</select>
</td>
</tr>
<tr>
<td class="leftColumn">* How likely is that you would recommend freeCodeCamp to a friend?</td>
<td class="rightColumn">
<input type="radio" id="radio1">
<label for="radio1">Definitely</label><br>
<input type="radio" id="radio1">
<label for="radio1">Maybe</label><br>
<input type="radio" id="radio1">
<label for="radio1">Not sure</label>
</td>
</tr>
<tr>
<td class="leftColumn">What do you like in FCC:</td>
<td class="rightColumn">
<select>
<option>Select an option</option>
<option>blabla</option>
</select>
</td>
</tr>
<tr>
<td class="leftColumn">Things that should be improved in future (Check all that apply):</td>
<td class="rightColumn">
<input type="checkbox" id="radio1">
<label for="radio1">Front-end Projects</label><br>
<input type="checkbox" id="radio1">
<label for="radio1">Back-end Projects</label><br>
<input type="checkbox" id="radio1">
<label for="radio1">Data Visualizaton</label>
</td>
</tr>
</table>
</div>
</div>
</body>
</html>