본문 바로가기

javascript

NC 전용 UL/OL Syntex

[스크립트]

<STYLE TYPE="text/css">

   UL.BLUELIST {color:blue;}

   UL.BLUELIST LI {color:aqua;list-style-type:square;}

   OL.REDLIST {color:red;}

   OL.REDLIST LI {color:magenta; list-style-type:upper-roman;}

   </STYLE>
</head>
<body>

<h1><p>UL/OL Syntex</p></h1>
<hr>

<center><table><tr><td bgcolor='yellow'>

<h3>


<br><br>

<UL CLASS=BLUELIST> <!-- LI elements inherit from UL -->

   <LI>컨설팅

   <LI>부동산 개발

   <LI>재밋는 께임

   </UL>

   <OL CLASS=REDLIST> <!-- LI elements inherit from OL -->

   <LI>함 해볼까?

   <LI>너 이름 쓸줄 아러?

   <LI>그럼, 함 써봐.. ..아랍어로..

   </OL>
</h3>
<br><br>
</td><tr></table>