HTML - Forms - Select


/ Published in: HTML
Save to your folder(s)

Select box html


Copy this code and paste it in your HTML
  1. <!-- FORM -->
  2. <div class="form">
  3. <div class="general">
  4. <label for="country">Country</label>
  5. <span class="wrap">
  6. <select name="country" id="country">
  7. <option>Scotland</option>
  8. <option>Denmark</option>
  9. <option>United States</option>
  10. </select>
  11. </span>
  12. </div>
  13. </div>
  14. <!--// FORM -->

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.