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
23 changes: 22 additions & 1 deletion 1-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@
<title>1-1 과제</title>
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h1>홍수진의 블로그</h1>

<h2>일상 공유 중 ~~~ ^^</h2>

<h4>인하대학교 컴퓨터공학과 재학중..</h4>
<p>instargram : @flood._.jin <a href="https://www.instagram.com/flood._.jin/">인스타프로필 바로가기</a></p>

<h4>좋아하는음식</h4>
<ol>
<li>떡볶이</li>
<li>김치찜</li>
<li>치킨</li>
</ol>
<h4>좋아하는 드라마</h4>
<ul>
<li>폭싹 속았수다</li>
<li>또 오해영</li>
<li>치즈인더트랩</li>
<p>...등등등</p>
</ul>


</body>
</html>
19 changes: 18 additions & 1 deletion 1-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@
<title>1-2 과제</title>
</head>
<body>
<!--여기에 과제 코드를 적어주세요!-->
<h1>글 작성</h1>
<p>카테고리 선택:
<select>
<option>일상</option>
<option>맛집공유</option>
<option>드라마,영화추천</option>
<option>오늘의 OOTD</option>
</select>
</p>

<form>
<label for="letter">내용:</label>
<textarea name="letter"placeholder="여기에 글을 작성하세요..."></textarea>
<br>
<input type="button" value="제출">
</form>


</body>
</html>
40 changes: 39 additions & 1 deletion 2.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,44 @@
<title>2 과제</title>
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h1>회원가입</h1>
<form>
<label for="id">ID:</label>
<input type="id">
<br>
<label for="password">Password:</label>
<input type="password">
<br>
<label for="name">이름:</label>
<input type="name">
<br>
<label for="date">생년월일:</label>
<input type="date">
<br>
<label for="select">성별:</label>
<select>
<option>
남성
</option>
<option>
여성
</option>
</select>
<br>

<label for="email">이메일:</label>
<input type="email" placeholder="이메일 앞자리">

<label for="select">@</label>
<select>
<option> gmail.com</option>
<option> naver.com</option>

<select></select>

<br>
<input type="button" value="가입하기">

</form>
</body>
</html>