Jump to content

Site continues after the footer ends?


Spectrum

Recommended Posts

You are creating nested sections, instead of individual sections for each individual heading 'About RustOps', 'Our Pledge', 'Rules' etc

<section>
  About RustOps...
  <section>
    Our Pledge
    <section>
      Staff
    </section>
  </section>
</section>
      

Instead of

<section>
  About RustOps
</section>
<section>
  Rules
</section>
<section>
  Staff
</section>

You are also using multiple duplicate id reference of 'parallax', when only a singular unique id can exist within a page. This error would have been picked up by validating html at https://validator.w3.org/ .

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...