본문 바로가기

Programming/HTML

ol type 변경

olType.html

<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<ul type = circle>
	<li>body<sup>태그</sup></li>
		<ol type = i>
			<li>bgcolor<sup>속성</sup></li>
			<li>text</li>
		</ol>
	<li>p</li>
	<li>hr</li>
		<ol>
			<li>noshade</li>
			<li>color</li>
			<li>size</li>
		</ol>
</ul>
</body>
</html>