SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <style>
        div {
            font-family: "微软雅黑";
        }
        
        ul {
            color: green;
            font-size: 20px;
        }
        
        ol {
            color: blue;
            font-size: 20px;
        }
    </style>
</head>

<body>
    <div>
        <h1>图书排行榜</h1>
        <ul type="disc">
            <li>三体</li>
            <li>盗墓笔记</li>
            <li>三生三世十里桃花</li>
        </ul>
        <h1>图书排行榜</h1>
        <ol type="1">
            <li>英雄联盟</li>
            <li>DOTA</li>
            <li>魔兽世界</li>
        </ol>
    </div>
</body>

</html>