2019~2020/웹 프로그래밍 (PHP)

웹사이트 제작에 필요한 기술

유진 2019. 8. 24. 15:28
반응형
<HTML>
	<HEAD>
		<TITLE> List Style </TITLE>
	</HEAD>

	<BODY>
	웹 사이트 제작에 필요한기술

			<UL style="list-style-type:circle">
				<LI>흰 원형
			</UL>	
		
			<UL style="list-style-type:disc">
				<LI>검은 원형
			</UL>

			<UL style="list-style-type:square">
				<LI>사각형
			</UL>

			<UL style="list-style-type:decimal">
				<LI>10진수
			</UL>

			<UL style="list-style-type:lower-roman">
				<LI>소문자 로마자
			</UL>

			<UL style="list-style-type:upper-roman">
				<LI>대문자 로마자
			</UL>

			<UL style="list-style-type:lower-alpha">
				<LI>소문자 알파벳
			</UL>

			<UL style="list-style-type:upper-alpha">
				<LI>대문자 알파벳
			</UL>

			<UL style="list-style-type:none">
				<LI>지정하지 않음
			</UL>
	</BODY>
</HTML>
반응형