Are <hr> and <br> inline or block elements?
html
Solution
`<hr>` is a block level element whereas `<br>` is an inline level element.
Additional reference:
- The HTML5 specification for `<hr>` by the W3C
- The HTML5 specification for `<br>` by the W3C
Problem
My guess is that `<br>` might be inline and that `<hr>` might be block. But I don't really have a clue...