-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprac.html
40 lines (39 loc) · 1.11 KB
/
prac.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-with, initial-scale=1.0" />
<link rel="stylesheet" href="prac.css" />
<title>박수빈의 자기소개</title>
</head>
<body>
<header>
<h1>안녕하세요! 박수빈입니다.</h1>
</header>
<section>
<h2>자기소개</h2>
<p>
저는 컴퓨터학과 21학번 박수빈이라고 합니다. gdsc 주니어 2기로 활동하게
되었어요.
</p>
</section>
<section>
<h2>취미</h2>
<ul>
<li>음악 들으면서 산책하기</li>
<li>예쁜 카페에서 카공하기</li>
<li>요리하기</li>
</ul>
</section>
<section>
<h2>댓글 작성</h2>
<form action="#" method="post">
<label fo="comment">댓글 : </label><br />
<textarea id="comment" name="comment" rows="4" cols="50"> </textarea
><br />
<input type="submit" value="댓글 작성" />
</form>
</section>
</body>
</html>