-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
61 lines (55 loc) · 2.12 KB
/
notes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center><h1>NOTES</h1></center><hr><hr>
<h3>Input types</h3>
<form>
<label for="">TEXT:</label>
<input type="text" >
<input type="submit"><br><hr>
<label for="">SUBMIT:</label>
<input type="submit" name="" id=""><br><hr>
<label for="">Button::</label>
<input type="button" name="" id=""><br><hr>
<label for="">checkbox:</label>
<input type="checkbox" name="" id=""><br><hr>
<label for="">color:</label>
<input type="color" name="" id=""><br><hr>
<label for="">date :</label>
<input type="date" name="" id=""><br><hr>
<label for="">datetime-local:</label>
<input type="datetime-local" name="" id=""><br><hr>
<label for="">email :</label>
<input type="email" name="" id=""><br><hr>
<label for="">file :</label>
<input type="file" name="" id=""><br><hr>
<label for="">image :</label>
<input type="image" name="" id=""><br><hr>
<label for="">month :</label>
<input type="month" name="" id=""><br><hr>
<label for="">password :</label>
<input type="password" name="" id=""><br><hr>
<label for="">radio :</label>
<input type="radio" name="" id=""><br><hr>
<label for="">range :</label>
<input type="range" name="" id=""><br><hr>
<label for="">search :</label>
<input type="search" name="" id=""><br><hr>
<label for="">tel :</label>
<input type="tel" name="" id=""><br><hr>
<label for="">time:</label>
<input type="time" name="" id=""><br><hr>
<label for="">url :</label>
<input type="url" name="" id=""><br><hr>
<label for="">week :</label>
<input type="week" name="" id=""><br><hr>
<br>
</form>
</body>
</html>