We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 740888c commit 470d1abCopy full SHA for 470d1ab
20190410/formRadio1.html
@@ -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