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


HTML <blockquote>用法及代碼示例


HTML中的<blockquote>標記用於顯示長引號(從另一個來源引用的部分)。它更改對齊方式,使其與眾不同。它同時包含開始和結束標簽。在blockquote標簽中,我們可以使用標題,列表,段落等元素。

注意:HTML4.1中的<blockquote>標記定義了長引號,即跨越多行的引號。但是在HTML5中,<blockquote>標記指定了從其他來源引用的部分。

用法:

<blockquote> Contents... </blockquote>

屬性:它包含一個屬性引用,用於指定引號來源。

以下示例說明了blockquote標簽:

範例1:



HTML

<!DOCTYPE html> 
<html> 
  <body> 
    <h1>GeeksforGeeks</h1> 
    <h2><blockquote> Tag</h2> 
    <!--blockquote Tag starts here -->
    <blockquote cite= 
"https://www.geeksforgeeks.org/html-tutorials/"> 
        
<p> 
        HTML stands for HyperText Markup Language. It  
        is used to design web pages using a markup language. 
        HTML is the combination of Hypertext and Markup language. 
        Hypertext defines the link between the web pages. A 
        markup language is used to define the text document within  
        tag which defines the structure of web pages. 
      </p> 
  
    </blockquote> 
    <!--blockquote Tag ends here -->
  </body> 
</html>

輸出:

範例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
    <h2><blockquote> Tag</h2> 
      
<p>This is blockquote Tag text with attribute cite</p> 
  
    <!--blockquote Tag starts here -->
    <blockquote cite="www.geeksforgeeks.org"> 
        GeeksforGeeks:A computer science portal for geeks 
    </blockquote> 
    <!--blockquote Tag ends here -->
</body> 
  
</html>

輸出:

支持的瀏覽器:

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




相關用法


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