国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Introduce css style usage

New 02-stylesheet.html page:

The code is as follows:

<!doctype html>
<html>
  <head>
     <meta charset="UTF-8">
     <title>Document</title>
  </head>
  <body>
     <!-- 引入 02-stylesheet.css 文件 -->
     <link rel="stylesheet" href="02-stylesheet.css" />
     <h1>靜夜思</h1>
     <div>窗前明月光</div>
     <p>疑是地上霜</p>
     <span>舉頭望明月</span>
     <p>低頭思故鄉(xiāng)</p>
  </body>
</html>

New stylesheet .css file, the code is as follows:
##

/* 為1級標(biāo)題設(shè)置樣式 */
h1{
  color:green;
}
p{
  background-color:silver;
}
span{
  font-size:48px;
}

Run 02-stylesheet.html page display Display:

微信圖片_20180314160614.png

Continuing Learning
||
<?php echo "引入css樣式用法";
submitReset Code