<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<h1>다람쥐 헌 쳇바퀴에 타고파</h1>
<h2>다람쥐 헌 쳇바퀴에 타고파</h2>
<h3>다람쥐 헌 쳇바퀴에 타고파</h3>
<h4>다람쥐 헌 쳇바퀴에 타고파</h4>
<h5>다람쥐 헌 쳇바퀴에 타고파</h5>
<h6>다람쥐 헌 쳇바퀴에 타고파</h6>
<hr />
<p>안녕하세요. 제이본 입니다.</p>
<p>안녕하세요. 제이본 입니다.</p>
<p>안녕하세요. 제이본 입니다.</p>
<hr />
<div class="game">
<p>... 게임 관련 내용</p>
</div>
<div class="tv">
<p>... tv 관련 내용</p>
</div>
<hr />
<details>
<summary>설레이는 이 마음은 뭘까</summary>
<p>왠지 잠을 이룰수가 없어</p>
</details>
<h1>장바구니</h1>
<ul>
<li>바나나</li>
<li>사과</li>
<li>수박</li>
</ul>
<h1>TODO List</h1>
<ol>
<li>아침 먹기</li>
<li>점심 먹기</li>
<li>저녁 먹기</li>
<li>양치 하기</li>
</ol>
<hr />
<a href="https://www.naver.com" target="_blank">네이버로 이동</a>
<hr />
<img src="https://zrr.kr/N9WI" alt="우주 오리" width="300" height="" />
<img src="./img/cat.jpg" alt="고양이" width="300" height="300" />
<hr />
<p>이 기차 번호는 <strong>999</strong> 입니다</p>
<hr />
<h1>텍스트 입력</h1>
<input type="text" name="id" value="기본데이터" />
<h1>비밀번호 입력</h1>
<input type="password" name="pw" placeholder="비번을 입력해주세요" />
<h1>체크박스 입력</h1>
<input type="checkbox" name="cb" />
체크하세요
<br />
<input type="checkbox" name="cb1" disabled />
비활성
<h1>라디오 버튼 입력</h1>
<input type="radio" name="radio" checked />
<input type="radio" name="radio" />
<h1>이메일 입력</h1>
<input type="email" name="id" />
<h1>날짜 입력</h1>
<input type="date" name="date" />
<h1>파일 입력</h1>
<input type="file" name="id" />
<h1>범위 입력</h1>
<input type="range" name="id" />
<h1>색상 입력</h1>
<input type="color" />
<fieldset>
<legend>로그인</legend>
<div>
<label for="id">아이디</label>
<input id="id" type="text" placeholder="아이디를 입력하세요" />
</div>
<div>
<label>
비밀번호
<input type="password" placeholder="비밀번호를 입력하세요" />
</label>
</div>
<div>
<label>
<input type="checkbox" />
아이디 기억하기
</label>
</div>
<div>
<button onclick="alert('로그인중')">로그인</button>
</div>
</fieldset>
<h1>텍스트에어리어</h1>
<textarea placeholder="내용을 입력하세요." rows="10" cols="30"></textarea>
<hr />
<h1>iframe</h1>
<iframe width="560" height="315" src="https://wikidocs.net"></iframe>
<hr />
<h1>audio</h1>
<audio src="https://zrr.kr/5Xik" controls></audio>
<hr />
<h1>video</h1>
<video src="https://zrr.kr/Mghf" controls width="400"></video>
<hr />
<h1>유튜브 비디오</h1>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/ZmqSOMlgZPU"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen
></iframe>
</body>
</html>
<a href="./sub/s05_2.html">2번으로이동</a>
<a href="/abs/s06_2.html">2번으로 이동</a>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<table border>
<tr>
<th>번호</th>
<th>상품</th>
</tr>
<tr>
<td>1</td>
<td>바나나</td>
</tr>
<tr>
<td>2</td>
<td>사과</td>
</tr>
</table>
<hr />
<table border>
<tr>
<th>번호</th>
<th>상품</th>
</tr>
<tr>
<td>1</td>
<td>바나나</td>
</tr>
<tr>
<td>2</td>
<td>사과</td>
</tr>
<tr>
<td colspan="2">확인</td>
</tr>
</table>
<hr>
<table border>
<tr>
<th>번호</th>
<th>상품</th>
</tr>
<tr>
<td rowspan="2">1</td>
<td>바나나</td>
</tr>
<tr>
<td>사과</td>
</tr>
</body>
</html>