久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      html5中引用標(biāo)記是什么元素

      html5中引用標(biāo)記是“blockquote”或“q”元素。blockquote元素可定義摘自另一個(gè)源的塊引用,瀏覽器通常會(huì)對(duì)blockquote元素進(jìn)行縮進(jìn);而q元素可定義不需要段落分隔的短引用,瀏覽器經(jīng)常會(huì)在這種引用的周圍插入引號(hào)。

      html5中引用標(biāo)記是什么元素

      本教程操作環(huán)境:windows7系統(tǒng)、HTML5版、Dell G3電腦。

      在html5中有兩種引用標(biāo)記:

      • <blockquote> 標(biāo)簽

      • <q> 標(biāo)簽

      <blockquote> 標(biāo)簽

      <blockquote> 標(biāo)簽定義摘自另一個(gè)源的塊引用。

      瀏覽器通常會(huì)對(duì) <blockquote> 元素進(jìn)行縮進(jìn)。

      <!DOCTYPE html> <html> <head>  <meta charset="utf-8">  </head> <body>  <h1>About WWF</h1> <p>Here is a quote from WWF's website:</p>  <blockquote cite="http://www.worldwildlife.org/who/index.html"> For 50 years, WWF has been protecting the future of nature. The world?s leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally. </blockquote>  </body> </html>

      html5中引用標(biāo)記是什么元素

      <q> 標(biāo)簽

      <q> 標(biāo)簽定義不需要段落分隔的短引用。

      瀏覽器經(jīng)常會(huì)在這種引用的周圍插入引號(hào)。

      <!DOCTYPE html> <html> <head>  <meta charset="utf-8">  </head> <body>  <p>WWF's goal is to:  <q>Build a future where people live in harmony with nature.</q> We hope they succeed.</p>  </body> </html>

      html5中引用標(biāo)記是什么元素

      推薦教程:《html視頻教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)