Skip to content

Instantly share code, notes, and snippets.

@ritcheyer
Created July 23, 2015 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ritcheyer/c3ac8ab0b3fad82fafe4 to your computer and use it in GitHub Desktop.
Save ritcheyer/c3ac8ab0b3fad82fafe4 to your computer and use it in GitHub Desktop.
/*doc
---
title: Forms
name: Forms
category: formsintro
---
Form elements should follow a consistent pattern. The basic structure is pretty straightforward.
```html_example
<div class="form-item">
<label class="form-label">
First Name
<input type="text" class="form-text">
</label>
</div>
```
There are styles for all types of form elements. Below you will see all the examples.
*/
/*doc
---
title: Forms
name: Basic Forms
category: textinput
---
## Form Types
```html_example
<div class="form-item">
<label class="form-label">
First Name
<input type="text" class="form-text">
</label>
</div>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment