HTML
リスト
・リスト(マーク)
・リスト(番号)
・リスト(定義形式)
|
リスト(マーク)
<ul> <li>リスト1</li> <li>リスト2</li> 〜 </ul>
<ul type="マークの種類"> 〜 </ul>
<li type="マークの種類"> 〜 </li>
マークのリストを作る。
マークの種類 :disc | circle | square |
<!doctype html public "-//w3c//dtd html 4.0 transitional//en" "http://www.w3.org/tr/rec-html40/loose.dtd">
<html>
<head>
<title>リスト(マーク)</title>
</head>
<body>
<ul>
<li>あああ</li>
<li>いいい</li>
<li>ううう</li>
<li type="disc">えええ</li>
<li type="circle">おおお</li>
<li type="square">かかか</li>
</ul>
</body>
</html>
sample
|
|