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
15 changes: 14 additions & 1 deletion 1-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@
<title>1-1 과제</title>
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h1>이다솜의 블로그</h1>
<p>이다솜의 정보를 담은 블로그입니다!!</p>
<h2>자기소개</h2>
<ul>
<li>학과-조선해양공학과</li>
<li>나이-21살 24학번</li>

</ul>
<h2>취미생활</h2>
<ol>
<li>컴퓨터게임</li>
<li><a href="https://www.leagueoflegends.com/ko-kr/">젤 좋아하는게임ㅎㅎ</a></li>
<li>베이킹</li>
</ol>
</body>
</html>
18 changes: 17 additions & 1 deletion 1-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@
<title>1-2 과제</title>
</head>
<body>
<!--여기에 과제 코드를 적어주세요!-->
<h1>블로그 작성하기</h1>

<label for="카테고리">카테고리:</label>
<select>
<option>일상</option>
<option>여행</option>
<option>비밀글</option>
</select>

<h3>블로그제목</h3>
<form>
<input type="text" placeholder="글을 작성해 주세요!">
</form>
<h3>블로그내용</h3>
<textarea name="letter"></textarea>
<br>
<button>제출</button>
</body>
</html>
24 changes: 23 additions & 1 deletion 2.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@
<title>2 과제</title>
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h1>회원가입</h1>
<p>아이디,비번,생년월일,성별,이메일을 입력해주세요요</p>
<form>
<input type="text" placeholder="아이디">
<br>
<input type="text" placeholder="비밀번호">
<br>
<input type="date"/>
</form>
<select>
<option>남성</option>
<option>여성</option>
</select>
<br>
<label for="이메일">이메일:</label>
<input type="text" placeholder="이메일">
<select>
<option>naver.com</option>
<option>gmail.com</option>
</select>
<br>
<button>완료</button>

</body>
</html>