The paragraph break tag <br/> will end a line, so that any new text will display in the browser below the text that preceded the <br/> tag. This tag does not require a closing tag. It is not a block-level element . It does not contain any content.
The / within the tag acts as the closer.
Steps to Success
- type the following HTML (or copy and paste) after your last entry but before the closing body tag </body>
<p>Bob Smith<br/>
121 Main Street <br/>
555-9871</p> - Save and preview in a browser.