Nothing below form is not showing (solved)

I’m working in codepen right now and for some reason, nothing below my form is showing, despite where I put it, inside or the outside of form, any help?
https://codepen.io/Nermin0000/pen/eYgQwYG?editors=1010

Hi @impreza.wili !

Welcome to the forum!

The rest is not showing up because you have a syntax error here.

    <select name="dropdown2" id="dropdown2">
      <option value="select-role">Select an option</option>
      <option value="challenges">Challenges</option>
      <option value="projects">Projects</option>
      <option value="community">Community</option>

You are missing an end tag for <select>
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select

Hope that helps!

You’re right! This is the 3rd time this type of thing happens to me, I gotta pay more attention, thank you, this fixed it.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.