-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (80 loc) · 3.32 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="container">
<header>Rigistration Form</header>
<form action="#" class="form">
<div class="input-box">
<label>Full Name</label>
<input type="text" placeholder="Enter full name" required />
</div>
<div class="input-box">
<label>Email Address</Address></label>
<input type="email" placeholder="Enter email address" required />
</div>
<div class="cole">
<div class="input-box">
<label>Phone Number</label>
<input type="number" placeholder="Enter phone number" required />
</div>
<div class="input-box">
<label>Birth Date</label>
<input type="date" placeholder="Birth Date" required />
</div>
</div>
<div class="gender-box">
<h3>Gender</h3>
<div class="gender-option">
<div class="gender">
<input type="radio" id="check-male" name="gender">
<label for="check-male">Male</label>
</div>
<div class="gender">
<input type="radio" id="check-female" name="gender">
<label for="check-female">Female</label>
</div>
<div class="gender">
<input type="radio" id="check-other" name="gender">
<label for="check-other">Prefer not to say</label>
</div>
</div>
</div>
<div class="input-box address">
<label>Address</label>
<input type="text" placeholder="Enter street address" required />
<input type="text" placeholder="Enter street address line 2" required />
<div class="cole">
<div class="select-box">
<select>
<option hidden>Country</option>
<option>America</option>
<option>Euroup</option>
<option>India</option>
<option>Pakistan</option>
<option>Japan</option>
</select>
</div>
<input type="text" placeholder="Enter your city" required />
</div>
<div class="cole">
<input type="text" placeholder="Enter your region" required />
<input type="number" placeholder="Enter postal code" required />
</div>
<div class="bio">
<label >Bio</label>
<br>
<br>
<textarea id="aa" cols="95" rows="5" placeholder="typing....."></textarea>
</div>
</div>
<button onclick="prompt(alert)">Submit</button>
</form>
</section>
</body>
</html>