<h3>사랑</h3>
<hr>
<!-- css가 하나의 라인으로 바로 적용하는 경우 -->
<div style="background-color:skyblue; padding:20px;">
내가 사람의 방언과 천사의 말을 할지라도
<span style="color:red">사랑</span>이 없으면
소리 나는 구리와 울리는 꽹과리가 되고,
<span style="color:red;">사랑</span>이 없으면 아무것도 아니라.
</div>
웹 페이지들의 기본 url과 페이지가 출력된 윈도우 지정
사용 예
math.html이나 science.html 웹페이지가 모두
http://www.mysite.com/score/에 있는 경우
<a href="http://www.mysite.com/score/math.html>수학</a>
<a href="http://www.mysite.com/score/science.html>과학</a>
위의 html 소스를 base 태그를 이용하여 수정
<head>
<base href="http://www.mysite.com/score/">
<a href="math.html>수학</a>
<a href="science.html>과학</a>