📜  如何在 HTML 中指定作为扩展引用的文本?

📅  最后修改于: 2021-10-31 05:26:08             🧑  作者: Mango

HTML 中的

标签用于显示长引用(从另一个来源引用的部分)。它更改对齐方式,使其与其他对齐方式不同。它包含开始和结束标记。

句法:

Contents...

示例 1:

HTML


  

    
        How to specify a text which 
        is an extended quotation?
    

  

    

        GeeksforGeeks     

       

        How to specify a text which          is an extended quotation?     

       
        GeeksforGeeks: A computer          science portal for geeks     
  


HTML


  

    
        How to specify a text which
        is an extended quotation?
    

  

    

        GeeksforGeeks     

       

        How to specify a text which         is an extended quotation?     

       
        GeeksforGeeks: A computer         science portal for geeks     
  


输出:

示例 2:在此示例中,我们将添加 cite 属性。 cite 属性包含指定引用来源的 URL。

HTML



  

    
        How to specify a text which
        is an extended quotation?
    

  

    

        GeeksforGeeks     

       

        How to specify a text which         is an extended quotation?     

       
        GeeksforGeeks: A computer         science portal for geeks     
  

输出: