get it on google playCreated with Sketch.
HTML> Buttons

Buttons

To create a button users can click on, we need the opening <button> and closing </button> tags.

 <body>
  <p>Subscribe to our Newsletter</p>
  <button>Subscribe</button>
 </body>

We can make texts appear on a button by typing them between the tags. Try typing Login between the button tags.

Make sure you use an uppercase "L".

 <body>
  <h1>Facebook</h1>
  <p>Log in to your account to get started</p>
  <button>Login</button>
 </body>
TRY IT ON THE APP