Paragraphs in HTML are used to separate and organize blocks of text on a webpage. The primary tag used for creating paragraphs in HTML is the <p> tag.
When creating a paragraph, the text is placed between the opening <p> tag and the closing </p> tag. For example, the following code creates a paragraph with the text "This is a paragraph":
<p>This is a paragraph</p>
It's important to note that the <p> tag is a block-level element, which means that it creates a new block formatting context. This means that by default, a new line will be added before and after the paragraph, creating a clear visual separation from other elements on the webpage.
Example:
<h1>This is a Heading</h1> <p>This is first paragraph.</p> <p>This is second paragraph.</p>
Output:
White Space in HTML Paragraph.
Note: You cannot add extra spaces or extra newlines inside paragraph tags in HTML. While loading the page, the browser will automatically remove all extra spaces and lines from paragraphs.
Example:
<p> This is the first paragraph I am writing multiple lines in this paragraph. </p> <p> This is the second paragraph. I am adding extra white space in this paragraph. </p>
Output:
If you want to add white spaces and line breaks to format the text based on your requirement then it is recommended to use the <pre> tag which is used to display preformatted text.
Example:
<pre> This is preformatted text. I am adding extra while space in this paragraph. </pre>
Output:
Use of <br> and <hr> tags in HTML.
In addition to the <p> tag, there are several other tags that can be used to format paragraphs, like:
- <br /> tag, which creates a line break within a paragraph.
- <hr /> tag, which is used to separate content with a horizontal line.
Example:
<p> This is a paragraph with a break <br />The next line of the paragraph is here. </p> <hr /> <p> This is another paragraph separated by a Horizontal line </p>
Output:
When creating paragraphs, it's also important to use proper formattings, such as bold, italics, and underlining, to make the text more readable and visually appealing.
It's also important to use headings and subheadings to create a clear hierarchy of content on the webpage. This makes it easier for users to understand the content and navigate the webpage.
No comments:
Post a Comment