Why does my navbar cover the content of my page?

It’s my portfolio and i don’t understand why my navbar covers the content of my page… Here’s the link to my page:
https://codepen.io/hasz/pen/rXwOvB

There are some errors in your code.

  1. your facebook/github/twitter links all share the same id. id’s are required to be unique.

  2. your welcome-section opening section tag isn’t closed. As far as the browser knows, it contains the following two sections, leading to unexpected results.

These are just the more obvious ones I found. As to your question, I’d likely wrap all the sections in an article tag, and give that top padding. I think. :wink:

2 Likes

Thanks for the suggestions!!! And yeah top padding did help!