Skip to content

Commit 470d1ab

Browse files
authored
Create formRadio1.html
1 parent 740888c commit 470d1ab

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

20190410/formRadio1.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!doctype html> <!-- formRadio1.html -->
2+
<html>
3+
<head>
4+
<meta charset="utf-8"/>
5+
<meta name="viewport" content="width=device-width, initial-scale=1"/>
6+
<title>폼 학습</title>
7+
</head>
8+
<body>
9+
<section>
10+
<form action="https://jsptogo.herokuapp.com/jspsrc/formRadio1.jsp" method="post">
11+
<fieldset>
12+
<legend>성별 선택</legend>
13+
<label for="malex">남자</label>
14+
<input type="radio" id="malex" name="gender" value="male" checked/>
15+
<label for="femalex">여자</label>
16+
<input type="radio" id="femalex" name="gender" value="female"/>
17+
<button type="submit">등록</button>
18+
</fieldset>
19+
</form>
20+
</section>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)