Kindly help on escaping special characters

Hello. I need help on this project. When analyzing the HTML I am asked to escape the special characters. How do I go about this. Kindly Help.
https://codepen.io/emilynyaruri/pen/vYEBdEZ

The erros i am getting are the next:

1. On regular sized devices (laptops, desktops), the element with id=“navbar” should be shown on the left half of the screen. It should always be visible to the user and should remain stationary. You may need to enlarge the viewport or zoom out to ensure the navbar doesn’t scroll with the page content.

2. My Technical Documentation page should use at least one media query.

Like KittyKora said, the tets you’re failing are re: navbar location and using a media query, not escaping characters. If you want to look more into that you can check here.

Edit: maybe someone said that because you used HTML reserved characters (< >) in your HTML text. I still see them displaying properly.

But your attempt to escape characters in an example of Python comes out wrong:

if 5 > \2:
print(“Five is greater than two!”)

Remember, you’re writing in HTML, so escaping won’t be by backslash (as it would be in Python), it’ll be by HTML code.

Thank you so much. Let me rectify on the issues you’ve mentioned