-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecond.html
More file actions
49 lines (29 loc) · 1.27 KB
/
second.html
File metadata and controls
49 lines (29 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form>
<fieldset style="border:3px solid blue ; display: inline-block;" aling = "center">
<legend align = "center" ><b>Login Form</b></legend>
Enter Name <input type="text" placeholder="Enter your name"> <br> <br>
Enter Number <input type="number" required> <br> <br>
Enter Email <input type="email"> <br> <br>
Enter Password <input type="password"> <br> <br>
<input type="color"> <br> <br>
<input type="file"> <br> <br>
<input type="date"> <br> <br>
Gender :
Male <input type="radio" name="Gender" >
Female <input type="radio" name="Gender">
Others <input type="radio"name="Gender"> <br><br>
<input type="submit" value="submit">
<input type="reset" value="Clear">
</fieldset>
</form>
<!-- label ..... fieldset or legend -->
</body>
</html>