-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform_answer.html
More file actions
43 lines (42 loc) · 1.43 KB
/
form_answer.html
File metadata and controls
43 lines (42 loc) · 1.43 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= <form>
<fieldset>
<legend>HTML 스터디가 망해가는 이유</legend>
<label>
노잼이다
<input type="radio" name="reasome">
</label>
<label>
너무 어렵다
<input type="radio" name="reasome">
</label>
<label>
주말에 뭐하는 짓이냐
<input type="radio" name="reasome">
</label>
<!-- 실무에서는 요소들 사이에 br 을 사용하지 않음 -->
<br>
<label for="">만약 다른 스터디를 하고 싶다면?</label>
<br>
<select name="lang">
<option value="javascript">자바스크립트</option>
<option value="python">파이썬</option>
<option value="java">자바</option>
</select>
<br>
<label for="lastWord">마지막으로 하고싶은 말</label>
<br>
<textarea name="lastWord" id="lastWord" cols="30" rows="2"></textarea>
<br>
<button type="submit">전송하기</button>
<button type="reset">다시 작성하기</button>
</fieldset>
</form>, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>