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
16 changes: 16 additions & 0 deletions 1-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,21 @@
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h1>서예원의 블로그</h1>
<P>제 일상을 담은 블로그 입니다.</P>
<p>instragram : @y1e_16.6 <a href="https://www.instagram.com/y1e_16.6/">인스타그램 주소</a></p>
<h3>좋아하는 음식</h3>
<ol>
<li>1.국밥</li>
<li>2.피자</li>
<li>3.마라탕</li>
</ol>

<h3>취미</h3>
<ul>
<li>웹툰보기</li>
<li>드라마보기</li>
<li></li>
</ul>
</body>
</html>
17 changes: 17 additions & 0 deletions 1-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,22 @@
</head>
<body>
<!--여기에 과제 코드를 적어주세요!-->
<h1>글 작성</h1>

<form>
<label>카테고리 선택: </label>
<select>
<option>일상 </option>
<option>자취밥 </option>
</select> <br>

<label>내용:</label>
<textarea placeholder="여기에 글을 작성하세요..."></textarea>

</form>

<button>제출 </button>


</body>
</html>
27 changes: 27 additions & 0 deletions 2.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,32 @@
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h1>회원가입</h1>

<form>

<label>ID: </label> <input type="text"required>
<br>
<label>Password: </label> <input type="text" required>
<br>
<label>이름:</label><input type="이름"required>
<br>
<label>생년월일: </label> <input type="date">
<br>
<label>성별:</label>
<select>
<option>남성</option>
<option>여성</option>
</select>

<br>
<label>이메일:</label> <input type="email"placeholder="이메일 앞자리">@
<select>
<option>gmail.com</option>
<option>naver.com</option>
</select>
<br>
<button>가입하기</button>
</form>
</body>
</html>