How to use input type email for input an e-mail address with auto validtion when submit in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
  
<form action="save.php"> <!-- Note: 404 That page (save.php) doesn't exist -->
  E-mail:
  <input type="email" name="email">
  <input type="submit">
</form>
  
</body>
</html>

 



answered Jan 2, 2019 by avibootz
...