<!DOCTYPE html>
<html lang="ko">
<head>
<title> block </title>
</head>
<body>
<h3> 블럭요소 block</h3>
Text1
Text2
Text3
<hr>
<div> Text1</div>
<div> Text2</div>
<div> Text3</div><hr>
<blockquote> Text9</blockquote>
<blockquote> Text8</blockquote>
<blockquote> Text7</blockquote>
<hr>
<pre>
서울 특별시
강남구
</pre>
<h3>인라인 요소 inline</h3>
<strong>진하게</strong>
<u>밑줄</u>
<i>기울임</i>
<a >링크</a>
<span>아이티윌</span>
<textarea cols="30" rows="10"></textarea>
<hr>
<h3>블럭 요소의 크기</h3>
<div style="background-color: crimson;">DIV</div>
<blockquote style="background-color: cadetblue;">blockquote</blockquote>
<pre style="background-color: blueviolet;">pre</pre>
<h1 style="background-color: darkseagreen;">h1</h1>
<ul style="background-color: hotpink;">
<li>java</li>
<li>python</li>
</ul>
<hr>
<h3>인라인 요소의 크기</h3>
<strong style="background-color: darkorange;">손흥민</strong>
<span style="background-color: firebrick;">김연아</span>
<div style="background-color: blueviolet; width: 200pt; height: 10cm;"></div>
</body>
</html>