Amara styleguide


Tags

Used to provide a clickable action to the user. These should typically be used for things that change state in some way. Use the button classes on an <a>, <button>, or input element. Use <a> tags for simple navigation.

Example

 
 <a class="button" href="#" role="button">Link</a>
 <button class="button">Button</button>
 <input class="button" type="button" value="Input">
 <input class="button" type="submit" value="Submit">
    
    
Link