-
Notifications
You must be signed in to change notification settings - Fork 0
/
S3_L25_inputs.html
25 lines (25 loc) · 989 Bytes
/
S3_L25_inputs.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Try out a range of interactive HTML Input types</title>
</head>
<body>
<label>This is a button</label>
<input type="button" name="myButton" value="XYZ"><br />
<label>This is a checkbox</label>
<input type="checkbox" name="myCheck" value="XYZ"><br />
<label>This is a color picker</label>
<input type="color" name="myButton" value="XYZ"><br />
<label>This is for date entry</label>
<input type="date"><br>
<label>This is for email address entry</label>
<input type="email" name="" value=""><br />
<label>This is for selecting a .docx file</label>
<input type="file" accept=".docx"><br />
<label>This is for password entry of max length 10</label>
<input type="password" maxlength="10" name="" value=""><br />
<label>This is a range scale 1-12</label>
<input type="range" min="0" max="12">
</body>
</html>