HTML - paragraph tag
Here you learn how to code the paragraph tag.
Paragraphs are defined in HTML with the <p> tag. HTML automatically adds an extra blank line before and after a paragraph. In the example below notice how the <p> causes line breaks without have to insert a <br>.Paragraph tag
|
<html> <head> <title>HTML tutorial</title> </head> <body> This is content. <p>This is content using a paragraph tag.</p> This is more content.. </body> </html> |
||
This is content. This is a paragraph. This is more content. |
||
Bookmark this page: |
Rate this page: |
Comments:
| please post comments | ||
|
admin November 21, 2006 |
||











