-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformex4.html
More file actions
21 lines (20 loc) · 867 Bytes
/
formex4.html
File metadata and controls
21 lines (20 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>예제</title>
</head>
<body>
<form method="get" action="form_app.js">
성명:<input type="text" name="p_name"/><br/>
전화:<input type="tel" name="p_tel" placeholder="00*-000*-0000" pattern="[0-9]{2,3}-[0-9]{3,4}-[0-9]{4}"/><br/>
이메일:<input type="email" name ="p_email" placeholder="***@***.***"/>
<p>
도서명:<input type ="text" size ="25" name="book_title"/><br/>
예약 희망일:<input type = "data" name="last_data" min="2013-01-30"><br/>
수령 시간:<input type = "time" name="time_from" min="09:00" max="18:00">에서<input type = "time" name="time_until" min="09:00" max="18:00"> 사이<br/>
<hr/>
<input type ="submit" value="예약하기"/>
</p>
</form>
</body>
</html>