-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo9.html
63 lines (60 loc) · 2.05 KB
/
demo9.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div>
<form action="" novalidate>
<div>
<input type="search" value="Sumit" size="40">
</div>
<div>
<input type="text" value="Sumit" readonly>
</div>
<div>
<input type="password" autofocus value="Sumit" maxlength="10" minlength="5" required>
</div>
<div>
<input type="text" value="" required>
</div>
<div>
<input type="text" value="1200" disabled>
</div>
<div>
<input type="color" name="" id="">
</div>
<div>
<input type="number" name="" id="" max="5" min="1" step="1" value="2" required>
</div>
<div>
<input type="range" name="" id="" max="5" min="1" required>
</div>
<div>
<input type="date" name="" id="" max="2020-01-01" min="2018-01-01" required>
</div>
<div>
<input type="email" name="email" required>
</div>
<div>
<input type="tel" name="phone" pattern="[0-9]{3}-[0-9]{2}-[0-9]{3}" required>
</div>
<div>
<input type="url" name="homepage" required>
</div>
<div>
<label for="">Data</label>
<input type="checkbox" name="" value="dd" id="" checked>
</div>
<div>
<input type="submit" value="send">
<input type="image" src="img/check.svg" alt="Submit" width="48" height="48">
<input type="submit" formenctype="multipart/form-data" formmethod="GET" formaction="" formtarget="_blank">
</div>
</form>
</div>
</body>
</html>