forked from likelion-inha-13/FE-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-2.html
More file actions
22 lines (22 loc) · 723 Bytes
/
Copy path1-2.html
File metadata and controls
22 lines (22 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>1-2 과제</title>
</head>
<body>
<h1>글 작성</h1>
<div class="box_1">
<p>카테고리 선택: <select name="cat" id="ca">
<option value="일상">일상</option>
<option value="망상">망상</option>
<option value="울상">울상</option>
</select></P>
<p>내용:
<textarea name="ta" rows="5" cols="20" placeholder="여기에 글을 작성하세요..."></textarea>
</p>
<input type="button" id="submit" value="제출">
</div>
</body>
</html>