Hello there,
I will happy if you leave your feedback about my Technical Documentation Page.
Thanks 
I like the design and the colors are perfect. I think this is more like a professional work.
All in all, it looks good.
The only thing I might have done is that for the “headers” under the h2s, I would have used h3 instead of p:
<h3>What is CSS?<h3/>
instead of:
<p>What is CSS?</p>
And I would want the li elements to not be bold. I’m not sure why they are, but it could be fixed with the CSS:
li {
font-weight: normal;
}
But still, it looks great. Have fun on the next challenge.
I’m glad with your comment,
Thanks a lot 
I don’t know why you see the li elements in bold, so far they are in normal weight (400) . I changed it to 300.
Now, you can see the new changes.
Thanks a lot 
I was seeing it on the screen and in the dev tools inspect. But yeah, I don’t see it now. Maybe I screwed it up.
Page looks good @alexn29. Something to revisit;
<br> element to force line breaks or spacing. That’s what CSS is for.<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-line;
}
Thanks a lot Roma,
I solved this issue using the css snippet as you mentioned in the above message.