Viewport height - Personal portofolio web page

Hello, i require assistance of smart people once again :slight_smile:

My problem is viewport height. I set it up for the first section with id=welcome-section, but then after i add height (no matter in px or vh) for the second section with id=projects, its starts right after

text.

I think there should be a better solution than to play with padding?

Link to code: https://codepen.io/SimonasZ/pen/XWmXwEM?editors=1100

Hey @s.zilevicius

It’s because you have missed the closing tag of section

Here is your current code:

<section id="welcome-section">
      <h1>Worst web developer at a highest price</h1>
      <p><i>(In case you would decide i'm worth paying at all...)</i><section> 

Last section tag should be the closing tag like: </section>

1 Like