UNPKG

field-guide

Version:

a fully-functional, static site implementation of a design system documentation site

18 lines (11 loc) 413 B
# Button This is an example page that just shows you how to use a HTML button. Just write a Markdown file as you would expect and the demo will be automatically rendered! ## Usage Simplest use case: a button with text in it, telling the user what to do. ```html <button type="button" name="button">Click Me</button> ``` More examples: ```html <button type="button" name="button">How about now?</button> ```