Requesting feedback on technical documentation page

https://codepen.io/rosewellcaitlin/full/VwLVbpY

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
code { 
  white-space: pre; 
}

in CSS and skip the <pre> tag in HTML.