-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinput-types.html
More file actions
31 lines (30 loc) · 931 Bytes
/
input-types.html
File metadata and controls
31 lines (30 loc) · 931 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="description"
content="This field contains information about your page. It is usually around two sentences long."
/>
<title>Basic Page Structure</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div>
<input type="time" name="alarm" value="07:00" min="05:00" max="09:00" />
<input
type="time"
name="meeting"
value="12:00"
min="09:00"
max="16:00"
step="3600"
/>
<input type="range" name="num" min="0" max="100" value="50" step="1" />
<input type="password" name="password" autocomplete="off" />
First name: <input type="text" name="firstName" autofocus /> Last name:
<input type="text" name="lastName" /> Name:
<input type="text" name="name" required />
</div>
</body>
</html>