0% completed
HTML paragraphs are used to organize and display text content in a structured way on a web page. A paragraph is defined using the <p>
tag and represents a block of text. Proper use of paragraphs improves readability and ensures that your content is displayed neatly.
<p>
tag.The syntax for defining a paragraph is:
<p>Content goes here</p>
Explanation:
<p>
: The opening tag marks the start of the paragraph.Content goes here
: The text content inside the paragraph.</p>
: The closing tag marks the end of the paragraph.Explanation:
<p>
tag creates a separate paragraph.HTML automatically collapses multiple spaces into a single space. To preserve spaces, use the
(non-breaking space) character.
Explanation:
creates a non-breaking space, which is useful for preserving spacing within a paragraph.To insert a line break within a paragraph, use the <br>
tag.
Explanation:
<br>
tag forces a line break within the paragraph without starting a new paragraph.To indent the first line of a paragraph, use the style
attribute with the text-indent
CSS property.
Explanation:
style="text-indent: 50px;"
attribute adds indentation to the first line of the paragraph.<pre>
To display text exactly as written, including line breaks and spaces, use the <pre>
(preformatted text) tag.
Explanation:
<pre>
tag preserves all spaces and line breaks as written.Use Separate Paragraphs for Separate Ideas:
Avoid Excessive Styling:
Preserve Meaningful Spaces:
or <pre>
when preserving spaces is important for the content.Keep Paragraphs Concise:
Mastering paragraphs helps you present text in a clean and readable manner. In the next lesson, we’ll dive into HTML Fonts, where you’ll learn how to style text using font properties.
.....
.....
.....