-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask_2.html
More file actions
66 lines (54 loc) · 2.41 KB
/
Copy pathtask_2.html
File metadata and controls
66 lines (54 loc) · 2.41 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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Registration Form</h1>
<fieldset>
<legend> Personal Information</legend>
<label for="name">First Name:</label>
<input type="text" name="First Name" id="name" placeholder="Enter your name" size="30"><br>
<label for="last name">Last Name:</label>
<input type="text" name="your name" id="last name" placeholder="Enter your last name" size="30"> <br>
<label for="age">Age: </label>
<input type="number" name="your age" id="age" size="20" placeholder="Enter your age"> <br>
<label for="gender">Gender:</label>
<select name="gender name" id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</fieldset>
<fieldset>
<legend> Contact Information</legend>
<label for="email">Email Address:</label>
<input type="email" name="your email" id="email" placeholder="Enter your email"> <br>
<label for="password">Password:</label>
<input type="password" name="your password" id="password" placeholder="Enter your password"><br>
<label for="country">Country: </label>
<select name="country name" id="country">
<option value="France">France</option>
<option value="Italy">Italy</option>
<option value="Azerbaijan">Azerbaijan</option>
</select>
</fieldset>
</fieldset>
<fieldset>
<legend> Address Information </legend>
<label for="address">Address:</label>
<input type="text" name="your address" id="address" placeholder="Enter your address"> <br>
<label for="city"> City</label>
<input type="text" name="your city" id="city"> <br>
<label for="code"> Postal Code</label>
<input type="number" name="your code" id="code"><br>
<label for="number">Phone Number</label>
<input type="tel " name="your phone number" id="number"> <br>
</fieldset>
<label for="comments">Additional Comments:</label> <br>
<textarea name="text" id="comments"></textarea> <br>
<input type="checkbox" name="subscribe" id="newsletter">
<label for="newsletter"> Subscribe to our newsletter </label> <br>
<button submit="enter">Register</button>
</body>
</html>