10.12. Input (image)

10.12. Input (image)

by didacticode

HTML

<form action="/action_page.php">
  <label for="nombre">Nombre: </label>
  <input type="text" id="nombre" name="nombre"><br><br>
  <label for="apellidos">Apellidos: </label>
  <input type="text" id="apellidos" name="apellidos"><br><br>
  <input type="image" src="https://www.w3schools.com/tags/img_submit.gif" alt="Submit" width="48" height="48">
</form>