<!DOCTYPE html>
<html lang="ko">
<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>li_tag_test</title>
</head>
<body>
<h2><font color="blue">발표회</font></h2>
<hr color="orange" noshade>
<ol type="I">
<li>참가팀 순서
<ul type="circle">
<li>햇님반</li>
<li>별님반</li>
<li>달님반</li>
<li>꽃님반</li>
</ul>
</li>
<li>햇님반 주제 <font color="green">노래 합장</font></li>
<li>별님반 주제 <font color="pink">민속 무용</font></li>
<li>달님반 주제 <font color="purple">에어로빅</font></li>
<li>꽃님반 주제 <font color="brown">단체 합주</font></li>
</ol>
</body>
</html>
* HTML5부터는 <font>는 지원하지 않아요. <font>는 더이상 쓰기 말기!!
'Skills > HTML5' 카테고리의 다른 글
220830 audio_tag.html (0) | 2022.09.04 |
---|---|
220830 img_tag.html (0) | 2022.09.04 |
220830 dl_test.html (0) | 2022.09.04 |
220830 ol_tag.html (0) | 2022.09.03 |
220830 li_tag.html (0) | 2022.09.03 |