En este artículo, definiremos una cita corta usando una etiqueta <q> . Se utiliza para insertar textos de citas en una página web, es decir, una porción de textos diferentes a los textos normales.
Sintaxis:
<q> Quotation Text... </q>
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> Define a short quotation </title> </head> <body> <h3>GeeksforGeeks</h3> <h3> HTML5: How to define a short quotation? </h3> <p> The quick brown fox jumps over the lazy dog </p> <!--Inside quotes--> <p><q> The quick brown fox jumps over the lazy dog </q></p> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> How to define a short quotation </title> </head> <body> <h1> GeeksForGeeks </h1> <h2> Define a short quotation? </h2> <p> Einstein said <q>Truth is what stands the test of experience.</q> </p> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA