En este artículo, definimos un párrafo usando un elemento <p> en el documento. La etiqueta <p> en HTML define el párrafo. Estos tienen etiquetas de apertura y cierre. Por lo tanto, cualquier cosa escrita dentro de <p> y </p> se trata como contenido de un párrafo. La mayoría de los navegadores leen una línea como un párrafo, incluso si no usamos la etiqueta de cierre, es decir, </p>, pero esto puede generar resultados inesperados. Por lo tanto, es una buena convención y debemos usar la etiqueta de cierre.
Sintaxis:
<p> Content... </p>
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title> HTML5: How to define a paragraph? </title> </head> <body> <h2> GeeksForGeeks </h2> <h2> HTML5: How to define a paragraph? </h2> <p> A Computer Science portal for geeks. </p> <p> It contains well written, well thought articles. </p> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title> HTML5: How to define a paragraph? </title> </head> <body> <h2> GeeksForGeeks </h2> <h2> HTML5: How to define a paragraph? </h2> <p> This paragraph has multiple lines. But HTML reduces them to a single line, omitting the carriage return we have used. </p> <p> This paragraph has multiple spaces. But HTML reduces them all to a single space, omitting the extra spaces and line we have used. </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