-
Notifications
You must be signed in to change notification settings - Fork 0
/
Table.html
140 lines (121 loc) · 3.51 KB
/
Table.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<title>Create Account </title>
</head>
<fieldset>
<form>
<table width="400px" align="center" cellspacing="5">
<h1 align ="center" style="column-rule-color: azure ; background: grey ; font-family: sans-serif; "> Create account </h1>
<tr>
<td style="color:rgb(0,139,93); ">
First name*
</td>
<td style="color:rgb(0,139,93); ">
Last name*
</td>
</tr>
<tr>
<td>
<input type="text" name="" placeholder="Enter your name ">
</td>
<td >
<input type="text" name="" placeholder="Enter your name ">
</td>
</tr>
<tr>
<td style="color:rgb(0,139,93); ">
Email*
</td>
</tr>
<tr>
<td colspan="2">
<input type="text" name="" placeholder="Enter your E-mail." size="47px">
</td>
</tr>
<tr>
<td style="color:rgb(0,139,93); ">
password*
</td>
<td style="color:rgb(0,139,93); ">
confirm password*
</td>
</tr>
<tr>
<td>
<input type="password" name="" placeholder="Enter the password">
</td>
<td >
<input type="password" name="" placeholder="Confirm password">
</td>
</tr>
<tr>
<td style="color:rgb(0,139,93); ">
Gender*
</td>
<td style="color:rgb(0,139,93); " name="hobbies">
Hobbies*
</td>
</tr>
<tr>
<td>
Male<input type="radio" name="a" value="a">
Female<input type="radio" name="a" value="a">
</td>
<td>
<input type="checkbox" name="hobbies">Music
<input type="checkbox" name="hobbies">Sports
<input type="checkbox" name="hobbies">Travel
<!-- <input type="checkbox" name="hobbies">Movies -->
</td>
</tr>
<tr>
<td style="color:rgb(0,139,93); ">Source of Income*</td>
<td style="color:rgb(0,139,93); ">Income*</td>
</tr>
<tr>
<td>
<select name="Source of Income">
<option>Employed</option>
<option>farmer</option>
<option>teacher</option>
<option>Doctor</option>
</select>
</td>
<td >
<input type="range" placeholder="">
<span>20k</span>
</td>
</tr>
<tr>
<td style="color:rgb(0,139,93);">
Upload Profile Picture
</td>
<td style="color:rgb(0,139,93);">
Age
</tr>
<tr>
<td>
<input type="file">
</td>
<td>
<input type="Number" placeholder="Enter your Age">
</td>
</tr>
<tr>
<td style="color:rgb(0,139,93);">
Bio
</td>
</tr>
<tr>
<td>
<textarea>
</textarea>
</td>
</tr>
</table>
</form>
</fieldset>
<body>
</body>
</html>