-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.html
52 lines (35 loc) · 1.16 KB
/
3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form>
<input type="" name="" id="" min="" max="" placeholder="" value="" required readonly pattern="">
<select>
<option>Ldh</option>
<option>Chd</option>
<option>Pgw</option>
</select>
<textarea></textarea>
</form>
<form>
<input type="text" name="name" id="" placeholder="Fill your Name"><br>
<input type="email" name="email" placeholder="Fill your Email"><br>
<input type="password" name="" placeholder="Fill your Password"><br>
<input type="tel" name="" placeholder=""><br>
<input type="number" name="" min="0" max="5"><br>
<input type="radio" name="gender" value="male">Male<br>
<input type="radio" name="gender" value="female">Female<br>
<input type="checkbox" name="ten" value="10">10th<br>
<input type="checkbox" name="twe" value="+2">+2<br>
<input type="date" name="date"><br>
<input type="time" name="time"><br>
<input type="range" min="0" max="5" name=""><br>
<input type="submit" name="register" value="Register"><br>
<input type="reset" name="reset"><br>
<button type="submit">Register</button>
</form>
</body>
</html>