二、HTML 属性、标签

2017-10-11  本文已影响0人  迩後
HTML_13.jpg HTML_14.jpg HTML_15.jpg

实际操作

<style>
    #h21{color:red}
    .h31{color:yellow}
</style>

  <body text="blue">   //字体颜色 蓝色
  <h1 title="我是一个H1标签">小可爱</h1>
  <h2 id="h21">222222</h2>
  <h3 class="h31">333333</h3>
  <h5 style="color: pink;">55555</h5>

  <h1>1 2  3>5©6®7</h1>
  <b>加粗效果</b><strong>我也是加粗</strong>
  <i>斜体效果</i>
  <u>下划线</u><ins>我也有下划线</ins>
  <s>删除线</s><del>我也有删除线</del>

   <!--上标--> 
  <h4>Y = X<sup>2</sup></h4> 

   <!--下标--> 
  <h4>Z = Log<sub>2</sub>10</h4>

  <div>我是一个块元素</div>
  <span>我是一个行内元素</span>

  <p align="right">我是一个便签,我是帅哥,我是大帅哥</p>
  <hr size="10px" color="blue" width="100px" align="center">
  <p align="left">我是一个便签,我是帅哥,我是大帅哥</p>
上一篇 下一篇

猜你喜欢

热点阅读