How to use input type URL to input URL address with auto validation 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 -->
  Write URL:
  <input type="url" name="theurl">
  <input type="submit">
</form>
  
</body>
</html>

 



answered Jan 3, 2019 by avibootz
...