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>
    <style type="text/css">
        *{
            font-size: 20px;
            font-family: "Microsoft YaHei";
        }
        ol
        {
            list-style-type:disc;
        }
        h3,
         {
            color: black;
        }
        li {
            color: green;
        }
    </style>
</head>
<body>
    <h3>图书排行榜</h3>
    <ul class="1">
    <li>三体<br>
    <li>盗墓笔记<br>
    <li >三生三世十里桃花</ul>
    <style type="text/css">
        ol 
        {
            list-style-type: decimal;
        }
        </style>
<h1>游戏排行榜</h1>
    <ol class="1">
    <li span style="color:blue">英雄联盟<br></span>
    <li span style="color:blue">DOTA <br></span>
    <li span style="color:blue">魔兽世界</ol></span>
</body>
</html>