-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_types.html
More file actions
38 lines (33 loc) · 1.02 KB
/
form_types.html
File metadata and controls
38 lines (33 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta rel="stylesheet" type="text/css" href="play.css"
</head>
<body>
<form>
<input type="button">button<br>
<input type="checkbox">checkbox<br>
<input type="color">color<br>
<input type="date ">date<br>
<input type="datetime ">datetime<br>
<input type="datetime-local">datetime-local<br>
<input type="email">email<br>
<input type="file">file<br>
<input type="image">image<br>
<input type="month ">month<br>
<input type="number ">number<br>
<input type="password">password<br>
<input type="radio">radio<br>
<input type="range">range<br>
<input type="reset">reset<br>
<input type="search">search<br>
<input type="submit">submit<br>
<input type="tel">tel<br>
<input type="text">text<br>
<input type="time">time<br>
<input type="url">url<br>
<input type="week">week<br>
</form>
</body>
</html>