Drop down menu?

Discussion in 'HTML & Website Design' started by 8everything, Mar 4, 2007.

  1. #1
    Does anyone know how to create a drop down menu in HTML? It's just a scroll bar with a lot of options. (it looks similar to this):

    [​IMG]

    Thanks :)
     
    8everything, Mar 4, 2007 IP
  2. smatts9

    smatts9 Active Member

    Messages:
    1,089
    Likes Received:
    71
    Best Answers:
    0
    Trophy Points:
    88
    #2
    Just a simple HTML form.
    
    <form>
    <select name="NAME">
    <option>Option 1</option>
    <option>Option 2</option>
    <option>Option 3</option>
    <option>Option 4</option>
    </select>
    </form>
    
    Code (markup):
     
    smatts9, Mar 4, 2007 IP