當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML <blockquote> cite屬性用法及代碼示例


HTML <blockquote>引用屬性用於指定引用的來源。

用法:

<blockquote cite="URL"> 

屬性值:


  • URL:它包含值,即指定引號來源的網址。
      可能的值:
    • absolute URL:它指向另一個網站。
    • relative URL:它指向網站內的文件。

    例:

    <!DOCTYPE html> 
    <html> 
      
    <head> 
        <title> 
          HTML  
          <blockquote>Cite Attribute  
      </title> 
        <style> 
            body { 
                text-align:center; 
            } 
              
            h1 { 
                color:green; 
            } 
        </style> 
    </head> 
      
    <body> 
        <h1>GeeksforGeeks</h1> 
        <h2><blockquote>Cite  Attribute</h2> 
        <blockquote cite="www.GeeksForGeeks.org.in"> 
          GeeksforGeeks:  
          A computer science portal for geeks 
      </blockquote> 
    </body> 
      
    </html>

    輸出:

    支持的瀏覽器:下麵列出了HTML <blockquote> Cite Attribute支持的瀏覽器:

    • 穀歌瀏覽器
    • IE瀏覽器
    • Firefox
    • Opera
    • Safari


相關用法


注:本文由純淨天空篩選整理自ManasChhabra2大神的英文原創作品 HTML | <blockquote> cite Attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。