-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformex.html
More file actions
29 lines (29 loc) · 1.28 KB
/
Copy pathformex.html
File metadata and controls
29 lines (29 loc) · 1.28 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
<!DOCTYPE html>
<html>
<head>
<title>폼예제</title>
</head>
<head>
<h3>다양한 입력 폼</h3>
<form method = "get" action = "form_app.js">
성명:<input type = "password" name = "person"/> <br/>
성별:<input type = "radio" name = "sex" value = "male"/>남성
<input type = "radio" name = "sex" value = "female"/>여성
직업:<select name = "job" size="4" multiple>
<option value = "student">학생</option> <option value="company">회사원</option>
<option value="teacher">교사</option> <option value="others">기타</option>
</select>
<p>구입희망분야(복수선택 가능)<br/>
- 분야: <input type = "checkbox" name = "books" value = "computer"/>컴퓨터
<input type = "checkbox" name = "books" value = "economy"/>경제
<input type = "checkbox" name = "books" value = "common"/>상식<br/>
비고:<br/>
<textarea name = "comments" row ="4" col="40"/></textarea>
</p> <hr/>
<input type = "submit" value="전송"/>
<input type = "reset" value="초기화"/>
<input type="button" value="확인하기" onclick="alert('입력값확인')"/>
<input type="image" src ="steve.jpg" alt ="전송버튼"/>
</form>
</head>
</html>