Learn HTML
Lesson 1 - Overview Of The Web And HTML
Lesson 3 - Images And Multimedia
Lesson 4 - Writing Your First HTML Page
Lesson 5 - Overview Of CSS
Lesson 6 - CSS Selectors And Properties
Lesson 7 - Applying CSS To HTML
Lesson 8 - Box Model
Lesson 9 - Positioning And Layout
Lesson 10 - Flexbox
HTML paragraphs are essential for displaying blocks of text on webpages. To create a paragraph, use the <p>
tag.
<p>This is a paragraph. It contains some text.</p>
In this example:
<p>
is the opening tag that signifies the start of a paragraph.This is a paragraph. It contains some text.
is the content of the paragraph.</p>
is the closing tag that denotes the end of the paragraph.By using the <p>
tag, you can structure and organise textual content effectively on your webpage.