-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass26-Exercise3-CipherSchools.html
34 lines (34 loc) · 1.43 KB
/
class26-Exercise3-CipherSchools.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<h2>Sign Up Form</h2>
<body>
<form>
<input type="text" id="Firstname" placeholder="First Name" required><br><br>
<input type="text" id="Lastname" placeholder="Last Name" required><br><br>
<input type="text" id="Email" placeholder="Email" required><br><br>
<input type="password" id="password" placeholder="password" required><br><br>
<p>Select Gender</p>
<label for="Male">Male</label>
<input type="radio" name="gender" id="Male" value="Male"><br>
<label for="Female">Female</label>
<input type="radio" name="gender" id="Female" value="Female"><br>
<label for="Other">Other</label>
<input type="radio" name="gender" id="Other" value="other"><br>
<label for="Country">Country</label>
<select name="" id="Country">
<option value="India">India</option>
<option value="Nepal">Nepal</option>
<option value="Bhutan">Bhutan</option>
</select>
<p>Write about yourself below</p>
<textarea name="" id="" col="30" rows="10" placeholder="typehere"></textarea><br>
<input type="submit" value="submit"><br>
</form>
</body>
</html>