Chapter 14: Problem 10
What tag causes a line break? What tag causes a paragraph break? What tag displays a horizontal rule?
Short Answer
` tag is used for creating a line break. It's an empty element that starts a new line, like so: ``` This is some text.
This text will appear on a new line. ``` The `
` tag is used for creating a paragraph break, which adds spacing before and after the paragraph content. It's a pair of opening and closing tags, as shown below: ```
This is the first paragraph.
This is the second paragraph, which will appear spaced apart from the first one.
``` The `` tag is used for displaying a horizontal rule, which separates content sections. It's an empty tag without a closing tag: ``` Content above the horizontal rule.
Content below the horizontal rule. ```
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.