Would you please review the project (Technical Documentation Page) and give me the feedback.
Your page looks good @Abdulrahman but there is something you need to revisit and correct.
- Do not use the
<br>
element to force spacing. Same with using
- For what you want to do you can either nest multi-line
<code>
snippets in<pre> </pre>
tags in HTML to preserve whitespace and line breaks. Or, you could do
- For what you want to do you can either nest multi-line
code {
white-space: pre;
}
in CSS and skip the <pre>
tag in HTML.