Hey there. I'm making a homebrew character sheet and Im having issues with a dropdown menu. Here is my code: <label>Species:</label> <select name="attr_species" /> <option name="">--Choose a Species--</option> <option name="human">Human</option> <option name="lizaur">Lizaur</option> <option name="mutant">Mutant</option> <option name="fodder">Fodder</option> <option name="cyborg">Cyborg</option> <option name="robot">Robot or Android</option> </select> When I use this I keep getting a blank dropdown and all of the options are listed in text below the dropdown itself. I'm brand new to html so I'm sure its something simple I've missed. Thanks!