-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (108 loc) · 3.3 KB
/
Copy pathindex.html
File metadata and controls
112 lines (108 loc) · 3.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignmet 2</title>
</head>
<body>
<form>
<fieldset style="background-color: red;">
<legend style="background-color: darkblue">Personal Data</legend> <br>
<fieldset style="background-color: yellow;">
<br>
<legend style="background-color: rgb(59, 159, 167); padding: 30px 6px" >Your Name</legend>
<table>
<tr>
<td><label for="fname">First name</label></td>
<td>:</td>
<td><input type="text" id="fname" name="firstName" placeholder="ex ahmed"></td>
</tr>
<tr>
<td><label for="secname">Second name</label></td>
<td>:</td>
<td><input type="text" id="secname" name="secondName" placeholder="ex bahnasy"></td>
</tr>
</table>
</fieldset> <br>
<table>
<tr>
<td><label for="pnum">your phone</label></td>
<td>:</td>
<td><input type="number"id="pnum" name="phoneNumber"></td>
</tr>
<tr>
<td><label for="email">Email</label></td>
<td>:</td>
<td><input type="email" id="email" name="email"></td>
</tr>
<tr>
<td><label for="pass">Password</label></td>
<td>:</td>
<td><input type="password" id="pass" name="password"></td>
</tr>
<tr>
<td><label for="repass">re-password</label></td>
<td>:</td>
<td><input type="password" id="repass" name="re-password"></td>
</tr>
<br>
</table>
<br> <br> <br>
<table>
<tr>
<td><input type="radio" name="gender" value="male"></td>
<td><label for="male">Male</label></td>
</tr>
<tr>
<td><input type="radio" name="gender" value="female"></td>
<td><label for="female">Female</label></td>
</tr>
</table>
<br> <br> <br>
<table>
<tr>
<td><input type="checkbox" id="status" name="status" value="student"></td>
<td><label for="status">Student</label></td>
</tr>
<tr>
<td><input type="checkbox" id="status" name="status" value="graduated"></td>
<td><label for="status">Graduated</label></td>
</tr>
</table>
<br> <br> <br>
<table>
<tr>
<td >
<select name="faculty" id="faculty">
<option selected > AUC </option>
</select>
</td>
</tr>
<tr>
<td>
<button>
<img src="images.png" alt="submit button" width="60px">
</button>
</td>
</tr>
</table>
</fieldset>
</form>
<br> <br>
<select name="Options" id="Options">
<optgroup label="Group 1">
<option value="Option 1.1" selected>Option 1.1</option>
</optgroup>
<optgroup label="Group 2">
<option value="Option 2.1"> Option 2.1</option>
<option value="Option 2.2"> Option 2.2</option>
</optgroup>
<optgroup label="Group 3" disabled>
<option value="Option 3.1"> Option 3.1</option>
<option value="Option 3.2"> Option 3.2</option>
<option value="Option 3.3"> Option 3.3</option>
</optgroup>
</select>
</body>
</html>