SOURCE

console 命令行工具 X clear

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<style>
    ul {
        color: green;
        font-size: 20px;
    }
    
    ol {
        color: blue;
        font-size: 20px
    }
    
    div {
        font-family: "微软雅黑";
    }
</style>

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

</html>