我們使用標籤,在HTML中加入短引號。如果我們想要引用多行,請使用
標籤。我們也可以使用
標籤內的cite屬性以URL形式指示引用的來源。文法
以下是
標記的語法。<q>The content to be quoted</q>範例
以下是
標籤的範例程式。<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <q>Delhi Land and Finance</q></p> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>範例
在下面的範例中,我們在
標記內的特定文字上使用了
標記。<!DOCTYPE html> <html> <head> <title>HTML u tag</title> </head> <body> <h1>Welcome to <q> INDIA </q> Kids.</h1> </body> </html>使用區塊引用標籤
HTML中的
標籤用於顯示長引用。文法
以下是
標記的語法。<blockquote>The multiple line content to be quoted </blockquote>範例
以下是
標籤的範例程式。<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for Delhi Land and Finance</p> <blockquote>Delhi Land and Finance is one of the largest commercial real estate developer in India.</blockquote> </body> </html>
以上是如何在HTML中使用引號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!