get it on google playCreated with Sketch.
HTML> Input element

Input element

We create input elements using the empty <input> tag.

 <body>
  <h4>Sign Up</h4>
  <input>
 </body>

The default value for type is text which lets users enter in text they can see.

 <body>
  <h4>Sign Up</h4>
  <input type="text" placeholder="Email">
  <br>
  <input type="password" placeholder="Password">
 </body>
TRY IT ON THE APP