HTML 웹 프로그래밍 입문 3장
1. 1
head는 시맨틱 태그가 아니다.
2. 2
div,ul,li는 블록 형식의 태그이다. a는 인라인 형식이다.
3. <a href = "http://hanb.co.kr" > 클릭 </a>
4. <a href = "HTMLPage.html"><img src = "hanb_logo.gif" /></a>
5.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h1>HTML5 Basic</h1>
<h2> ITCookbook - HanbitAcademy </h2>
<hr />
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</body>
</html>
6.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<ul>
<li>따뜻한 음료</li>
<ol>
<li>커피</li>
<li>녹차</li>
<li>둥굴레차</li>
</ol>
<li>차가운 음료</li>
<ol>
<li>커피</li>
<li>스무디</li>
<li>식혜</li>
</ol>
</ul>
</body>
</html>