Every application need a huge amount of forms
Scale
Style
A form should be marked up using it's default HTML properties. The ones we make use of include (in hierarchical order)
Make forms great and easy to use with the following rules:
label
s for larger hit areas, and be sure to set the for
, name
, and id
attributes for all applicable elements.ul
.input
, explore other options (e.g., radio buttons over select lists).<form>
<div class="large-12 columns">
<label for="awesome-input">
Input Label
</label>
<input type="text" id="awesome-input" name="awesome-input">
</div>
</form>
Find a Cool Restaurant!