Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion 1-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@
<title>1-1 과제</title>
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h2> 채부경의 블로그 </h2>
<p> 제 일상을 담은 블로그입니다. </p>
<p> instgram : @bukyung03 </p>
<p> github : <a href="https://github.com/bukyung03">github 링크</a> </p>

<h2> 좋아하는 음식 </h2>
<ol>
<li> 김치찌개 </li>
<li> 빵 </li>
<li> 토피넛 라뗴 </li>
</ol>

<h2> 취미 </h2>
<ul>
<li> 뒹굴거리기 </li>
<li> 예능 보기 </li>
<li> 노래 듣기 </li>
</ul>

</body>
</html>
16 changes: 15 additions & 1 deletion 1-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@
<title>1-2 과제</title>
</head>
<body>
<!--여기에 과제 코드를 적어주세요!-->
<h2> 글 작성 </h2>
<p> 카테고리 선택:
<select>
<option>일상</option>
<option>일상2</option>
<option>일상3</option>
<option>일상4</option>
</select>
</p>

<p> 내용:
<textarea name="letter" placeholder = "여기에 글을 작성하세요...." ></textarea>
</p>
<button>제출</button>

</body>
</html>
35 changes: 34 additions & 1 deletion 2.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,39 @@
<title>2 과제</title>
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h2> 회원가입</h2>
<form>
<p>ID:
<input type="text" required>
<br>
Password:
<input type="text" required>
<br>
이름:
<input type="text" required>
<br>
생년월일:
<input type="date">
<br>
성별:
<select>
<option>남성</option>
<option>여성</option>
</select>
<br>
이메일:
<input type="text" placeholder="이메일 앞자리" required >
@
<select>
<option>gmail.com</option>
<option>naver.com</option>
</select>
<br>
<button>가입하기</button>

</p>

</form>

</body>
</html>