-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02_form.html
More file actions
26 lines (26 loc) · 966 Bytes
/
02_form.html
File metadata and controls
26 lines (26 loc) · 966 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
<!DOCTYPE html>
<html>
<head>
<meta charset="euc-kr" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0,
maximum-scale=1.0, minimum-scale=1.0,
user-scalable=no"/>
<title>HTML5</title>
</head>
<body>
<form action="#">
날짜: <input type="date" min="2011-11-01" max="2011-12-31" step="1" value="2011-11-11"/> <br/>
범위: <input type="range" min="0" max="100" step="1" value="50"/> <br/>
숫자: <input type="number" min="0" max="100" step="1" value="50"/> <br/>
검색: <input type="search"/> <br/>
URL: <input type="url" list="url_list"/> <br/>
메일: <input type="email"/> <br/>
힌트문자: <input type="text" placeholder="이름을 입력하세요"/> <br/>
자동포커스: <input type="text" autofocus/> <br/>
빈값검사: <input type="text" required/> <br/>
정규표현식: <input type="text" pattern="(010|011)-\d{3,4}-\d{4}"/> <br/>
<input type="submit" value="Submit"/>
</form>
</body>
</html>