Heim > Artikel > Web-Frontend > Wie verwende ich Anführungszeichen in HTML?
Wir verwenden das -Tag, um kurze Anführungszeichen in HTML hinzuzufügen. Wenn wir mehrere Zeilen zitieren möchten, verwenden Sie das Tag
.Wir können auch das Cite-Attribut innerhalb des
-Tags verwenden, um die Quelle des Zitats in Form einer URL anzugeben.Grammatik
Das Folgende ist die Syntax für das
-Tag.<q>The content to be quoted</q>Beispiel
Das Folgende ist ein Beispielprogramm für das
-Tag.<!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>Beispiel
Im folgenden Beispiel verwenden wir das
-Tag für bestimmten Text innerhalb des
-Tags.<!DOCTYPE html> <html> <head> <title>HTML u tag</title> </head> <body> <h1>Welcome to <q> INDIA </q> Kids.</h1> </body> </html>Verwenden Sie Block-Anführungszeichen-Tags
Das
-Tag in HTML wird zur Anzeige langer Anführungszeichen verwendet.Grammatik
Das Folgende ist die Syntax für das
-Tag.<blockquote>The multiple line content to be quoted </blockquote>Beispiel
Das Folgende ist ein Beispielprogramm für das
-Tag.<!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>
Das obige ist der detaillierte Inhalt vonWie verwende ich Anführungszeichen in HTML?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!