-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (69 loc) · 2.19 KB
/
index.html
File metadata and controls
70 lines (69 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="style2.css">
</head>
<body>
<form>
<fieldset>
<legend>Fill out the form carefully for registration</legend>
<h1>Student Registration Form</h1>
<br/>
<h3>Fields marked with "*" are required</h3>
<br/>
<h2>Student name *</h2>
<input type="text" placeholder="First name"> <input type="text" placeholder="Middle name"> <input type="text" placeholder="Last name">
<br/>
<br/>
<h2>Birth Date *</h2>
<input type="datetime-local" placeholder="Month">
<br/>
<br/>
<h2>Gender *</h2>
<select>
<option value="male">male</option>
<option value="female">female</option>
</select>
<br/>
<br/>
<h2>Address</h2>
<input type="text" id="abc" placeholder="Street address">
<br/>
<br/>
<input type="text" id="abc" placeholder="Street Address line 2">
<br/>
<br/>
<input type="text" placeholder="City"> <input type="text" placeholder="State/Province">
<br/>
<br/>
<input type="text" placeholder="Postal/Zip Code">
<br/>
<br/>
<input type="text" placeholder="Country">
<select>
<option value="Belgium">Belgium</option>
<option value="France">France</option>
<option value="Germany">Germany</option>
</select>
<br/>
<br/>
<input type="email" placeholder="Email">
<br/>
<br/>
<input type="tel" placeholder="GSM" required>
<br/>
<br/>
<input type="password" placeholder="Password">
<h2>Comment</h2>
<input type="text" id="comment" placeholder="">
<br/>
<br/>
<input type="submit" value="Submit">
</fieldset>
</form>
</body>
</html>