Current Assignment(s)
P1: The Live Site
Due: Recommended by Monday, 5.21
Due: Recommended by Monday, 5.21
Horizontal Rules
A horizontal rule is a line that runs across the browser window. These can be used to visually differentiate content in a document.
HTML
<p>This is a paragraph element.</p>
<hr />
<p>This is another paragraph element.</p>
Compare this to Markdown:
markdown
This is a paragraph.
---
This is another paragraph.
Horizontal rules cleanly create boundaries between content, and span the width of the page (or browser, if full width).
- Previous
- Next