Hi @rosewellcaitlin, some things to revisit;
- Don’t use the
<br>element to force line breaks- Nest multi-line
<code>snippets in<pre> </pre>tags in HTML to preserve whitespace and line breaks. Or you could do
- Nest multi-line
code {
white-space: pre;
}
in CSS and skip the <pre> tag in HTML.