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
26 changes: 26 additions & 0 deletions 1-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,31 @@
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<h3>한민재의 블로그</h3>

<p> 제 일상을 담은 블로그입니다</p>
<p>instagram :
<a href="https://www.instagram.com/gksalswo/">@gksalswo</a>
</p>
<p>github :
<a href="https://github.com/minjaehan?tab=repositories">github</a>
</p>

<br/>

<h4>좋아하는 음식</h4>
<ol>
<li>카레</li>
<li>피자</li>
<li>카레 피자</li>
</ol>

<h4>취미!</h4>
<ul>
<li>음악 감상</li>
<li>누워 자기</li>
<li>게임하기!</li>
</ul>

</body>
</html>
18 changes: 18 additions & 0 deletions 1-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,23 @@
</head>
<body>
<!--여기에 과제 코드를 적어주세요!-->
<h2>글 작성</h2>
<p>카테고리 선택:
<select>
<option>골라보세요</option>
<option>멋사</option>
<option>화이팅</option>
<option>!!</option>
<option>열심히 달려보자!!</option>
</select>

<p>
<label for="content">내용 :</label>

<textarea id="content">
</textarea>
</p>
<button>제출</button>
</p>
</body>
</html>
46 changes: 46 additions & 0 deletions 2.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,51 @@
</head>
<body>
<!-- 여기에 과제 코드를 적어주세요! -->
<form>
<p>
<label for="id">ID :</label>
<input type="text" id ="id"placeholder="아이디를 입력하세요">

<br>

<label for="password">password :</label>
<input type="text" id="password" placeholder="비밀번호를 입력하세요">

<br>

<label for="name">이름 :</label>

<input type="text" id="name" placeholder="이름을 입력하세요">
<br>

<label for="date">생년월일 :</label>

<input type="date" id="date">
<br>
<label for="male/female">성별</label>

<select id="male/female">
<option>남성</option>
<option>여성</option>
</select>
<br>
<label for="email">이메일 :</label>

<input type="text" id="email" placeholder="이메일 앞자리">
@
<select>
<option>naver.com</option>
<option>gmail.com</option>
</select>

<br>

<button>가입하기</button>


</p>


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