SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
  <head>
    <link href="styles/style.css" rel="stylesheet">
    <link href="https://fonts.font.im/css?family=Open+Sans" rel="stylesheet" type="text/css"> 
    <meta charset="utf-8">
    <title>我的测试页面</title>
  </head>
  <body>
    <h1>CLG 酷毙了!</h1>
    <img src="https://nimg.ws.126.net/?url=http%3A%2F%2Fdingyue.ws.126.net%2F2021%2F0807%2F2f4d82ecp00qxg0we003gc000cb00dwg.png&thumbnail=650x2147483647&quality=80&type=jpg" alt="冰七浮八">
    <p>三国杀多届老炮杯冠军冰封</p>
    <p>三国杀全模式冠军选手浮光</p>
    <ul>
      <li>冰封老炮杯第七</li>
      <li>浮光老炮杯第八</li>
      <li>冬虫夏草</li>
    </ul>

    <p>两个蝼蚁今天打比赛又被捏烂了,1比3不敌西逐鹿</p>

    <p>冰封直播间地址: <a href="https://www.huya.com/328340">虎牙冰封</a></p>
    <p>浮光直播间地址: <a href="https://www.huya.com/721954">虎牙浮光</a></p>
  </body>
</html> 
html {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    background-color:aqua
  }
  h1 {
    font-size: 80px;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    color: #00539F;
    text-shadow: 3px 3px 1px black;
  
  }
  p, li {
    font-size: 10px;
    line-height: 3;
    letter-spacing: 2px;
  }
  body {
    width: 500px;
    margin: 0 auto;
    background-color:aliceblue ;
    padding: 0px 20px 20px 20px;
    border: 5px solid black;
  }
  img {
    display: block;
    margin: 0 auto;
  }
p {
    color: green;
  }