-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.html
More file actions
24 lines (23 loc) · 866 Bytes
/
Test.html
File metadata and controls
24 lines (23 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<form>
<label for="first name">First Name :-</label>
<input type="text" placeholder="First Name" id="first name">
<br><br>
<label for="last name">Last Name :-</label>
<input type="text" placeholder="Last Name" id="last name">
<br><br>
<label for="number">Mobile Number :-</label>
<input type="number" placeholder="Mobile Number" id="number">
<br><br>
<label for="email">Email :-</label>
<input type="email" placeholder="Email" id="email">
<br><br>
<label for="password">Password :-</label>
<input type="password" placeholder="Password" id="password">
<br><br>
<label for="confirm password">Confirm Password :-</label>
<input type="password" placeholder="Confirm Password" id="confirm password">
<br>
<br>
<label for="checkbox"></label>
<input type="checkbox" id="checkbox">
</form>