亚洲国产精品人久久,亚洲va国产日韩欧美精品色婷婷,久久久久88色偷偷,免费人成黄页在线观看国际

17站長(zhǎng)網(wǎng)

Html標(biāo)簽教程

HTML <!DOCTYPE> 聲明HTML <!--...--> 注釋標(biāo)簽HTML <bdi> 標(biāo)簽HTML <base> 標(biāo)簽HTML <b> 標(biāo)簽HTML <audio> 標(biāo)簽HTML <article> 標(biāo)簽HTML <aside> 標(biāo)簽HTML <area> 標(biāo)簽HTML <address> 標(biāo)簽HTML <abbr> 標(biāo)簽HTML <a> 標(biāo)簽HTML <cite> 標(biāo)簽HTML <canvas> 標(biāo)簽HTML <caption> 標(biāo)簽HTML <button> 標(biāo)簽HTML <br/> 標(biāo)簽HTML <body> 標(biāo)簽HTML <blockquote> 標(biāo)簽HTML <bdo> 標(biāo)簽HTML <command> 標(biāo)簽HTML <colgroup> 標(biāo)簽HTML <code> 標(biāo)簽HTML <col> 標(biāo)簽HTML <del> 標(biāo)簽HTML <details> 標(biāo)簽HTML <dd> 標(biāo)簽HTML <datalist> 標(biāo)簽HTML <em> 標(biāo)簽HTML <dt> 標(biāo)簽HTML <dl> 標(biāo)簽HTML <div> 標(biāo)簽HTML <dialog> 標(biāo)簽HTML <dfn> 標(biāo)簽HTML <header> 標(biāo)簽HTML <form> 標(biāo)簽HTML <head> 標(biāo)簽HTML <footer> 標(biāo)簽HTML <font> 標(biāo)簽HTML <figure> 標(biāo)簽HTML <figcaption> 標(biāo)簽HTML <embed> 標(biāo)簽HTML <fieldset> 標(biāo)簽HTML <kbd> 標(biāo)簽HTML <ins> 標(biāo)簽HTML <img> 標(biāo)簽HTML <input> 標(biāo)簽HTML <i> 標(biāo)簽HTML <hr> 標(biāo)簽HTML <html> 標(biāo)簽HTML <h1> - <h6> 標(biāo)簽HTML5 <hgroup>標(biāo)簽HTML <map> 標(biāo)簽HTML <link> 標(biāo)簽HTML <li> 標(biāo)簽HTML <label> 標(biāo)簽HTML <legend> 標(biāo)簽HTML <keygen> 標(biāo)簽HTML <object> 標(biāo)簽HTML <noscript> 標(biāo)簽HTML <meter> 標(biāo)簽HTML <nav> 標(biāo)簽HTML <meta> 標(biāo)簽HTML <menu> 標(biāo)簽HTML5 <mark> 標(biāo)簽HTML <option> 標(biāo)簽HTML <output> 標(biāo)簽HTML <optgroup> 標(biāo)簽HTML <ol> 標(biāo)簽HTML <rp> 標(biāo)簽HTML <rt> 標(biāo)簽HTML <q> 標(biāo)簽HTML <progress> 標(biāo)簽HTML <pre> 標(biāo)簽HTML <param> 標(biāo)簽HTML <p> 標(biāo)簽HTML <script> 標(biāo)簽HTML <samp> 標(biāo)簽HTML <s> 標(biāo)簽HTML <ruby> 標(biāo)簽HTML <style> 標(biāo)簽HTML <strong> 標(biāo)簽HTML <strike> 標(biāo)簽HTML <span> 標(biāo)簽HTML <source> 標(biāo)簽HTML <small> 標(biāo)簽HTML <select> 標(biāo)簽HTML <section> 標(biāo)簽HTML <tfoot> 標(biāo)簽HTML <th> 標(biāo)簽HTML <textarea> 標(biāo)簽HTML <td> 標(biāo)簽HTML <tbody> 標(biāo)簽HTML <table> 標(biāo)簽HTML <sup> 標(biāo)簽HTML <sub> 標(biāo)簽HTML <summary> 標(biāo)簽HTML <video> 標(biāo)簽HTML <var> 標(biāo)簽HTML <ul> 標(biāo)簽HTML <u> 標(biāo)簽HTML <tt> 標(biāo)簽HTML <track> 標(biāo)簽HTML <tr> 標(biāo)簽HTML <title> 標(biāo)簽HTML <time> 標(biāo)簽HTML <thead> 標(biāo)簽HTML <wbr> 標(biāo)簽

HTML <blockquote> 標(biāo)簽

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

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

如果標(biāo)記是不需要段落分隔的短引用,那么可以使用 <q>

范例

定義一個(gè)摘自另一個(gè)源的塊引用

<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>

屬性

屬性 描述

cite

URL 設(shè)置引用的來(lái)源

HTML 4.01 與 HTML5之間的差異

HTML 4.01 中,<blockquote> 標(biāo)簽定義一段長(zhǎng)引用

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

HTML 與 XHTML 之間的差異

如果想要把頁(yè)面作為 XHTML 進(jìn)行驗(yàn)證,那么 <blockquote> 元素必須包含塊級(jí)元素

<blockquote>
<p>這是一個(gè)長(zhǎng)引用,這是一個(gè)長(zhǎng)引用</p>
</blockquote
返回頂部