Hi,
here is my new project:
Please any feedback and suggestions…
Thanks a lot.
Hi,
here is my new project:
Please any feedback and suggestions…
Thanks a lot.
Hey
I wanted to suggest two things:
Thanks @kubus0212 on suggestions.
I’ll fix it.
Your page looks good @esmerdragunic. Some things to revisit;
A suggestion. The doc is about CSS. In your CSS you have declarations that are multi-line and they’re easy read.
In your doc you have CSS that you display on one line and that’s hard to read.
You can nest multi-line <code>
snippets in <pre> </pre>
tags in HTML to preserve whitespace and line breaks.
Or skip the <pre>
tag and do the following in CSS;
code {
white-space: pre;
}