How Do I Get a Blank Line Inserted in a Paragraph in HTML?
In HTML, the <p> tag stands for "paragraph" and the <br /> tag stands for "page break." All content within <p> tags share the same paragraph attributes. Anything after the <br /> tag will begin on a new line. To create a blank line within a paragraph while maintaining the same paragraph attributes as the rest of the section, the <br /> tag can be used twice in a row.
Instructions
-
-
1
Type the following tag to start a paragraph: <p>
-
2
Type your paragraph content.
-
-
3
Type the following tags to create a blank line within your paragraph: <br /> <br />
-
4
Type the following tag to end your paragraph: </p>
-
1