Menampilkan Input Element html


Berikut source code html menampilkan Input Element html:

<!DOCTYPE html>
<html>
<body>

<h2>The input Element</h2>

<form action="/action_page.php">
  Enter your name:
  <input name="firstname" type="text">
  <br><br>
  <input type="submit">
</form>

</body>
</html>

Komentar