head 태그
<head>
<title>문서 제목</title>
<meta name="keywrods" content="html example">
<meta http-equiv="refresh" content="3;http://www.google.com" >
<meta charset="utf-8">
</head>
body 태그
<body
bgcolor=pink <!-- 웹페이지 전체 백그라운드 색상지정 -->
link = rgb{1,1,1};
alink = red
vlink = blue
leftmargin = 0
topmargin = 0
marginwidth=50
marginheight=50
background="../note/HYU_logo.png"
문단 관련 태그
<br>
<p>aa bb </p>
<p align=left>abc </p>
<p align=right>abc </p>
<p align=center>abc </p>
<h1>h1 </h1>
<pre>
ewrwrelknlkn
lwlefnlwenkrl
erlkenrlwn l
</pre>
글자 관련
<font color=#790604 size=30>
test1
<big>기준보다 2 커짐 </big>
<small>기준보다 2 작아짐 </small>
<em>이텔릭체, 기울임 </em>
<strong>굵게 </strong>
<center>가운데정렬 </center>
<u>밑줄</u>
이미지 삽입, 하이퍼링크, 수평선
<hr width=500 size=5 align=center color=red noshade>
<img src="../note/HYU_logo.png" align=top width=100 height=100 border=2 hspace=10 vspace=10/>
<a href=”http://www.daum.net” target=”_blank” title=”한양대학교”>hanyang </a>
table 태그
<table width=100 height=100 bordercoloer=red border=1 bgcolor=red background="../note/HYU_logo.png" cellpadding=3 cellspacing=5>
<tr height=100 align="center" bgcolor=green background="../note/HYU_logo.png" align=center valign=middle>
<td width=100 bgcolor=yellow>내용 </td>
<td width=80>내용 </td>
</tr>
<tr>
<td>wer</td>
<td>tyu</td>
</tr>
</table>
<table border=1>
<tr bgcolor=red>
<td>ghi1</td><td>mnp1</td><td>def1</td>
</tr>
<tr bgcolor=yellow>
<td rowspan=2>ghi2</td><td>mnp2</td><td>def2</td>
</tr>
<tr bgcolor=blue>
<td colspan=2>ghi3</td><td>mnp3</td><td>def3</td>
</tr>
</table>
div, span 등
<head>
<title>example</title>
<style>
.sample{font-size: 20; color: aqua;}
.research{font-size: 30; font-weight: bold; color:black}
</style>
</head>
<body>
<div class= "sample">
<p>2021년 생명공학백서입니다. </p>
<p>정부의 생명공학 분야의 주요 정책 및 연구개발 현황, </p>
<p>국내외 <span class="research">연구동향과 전망 등 우리나라 생명공학</span>전반의 정보를체계적으로 종합 수록하였으니, </p>
<p>많이 활용하여 주시기 바랍니다.</p>
</div>
</body>