input pattern Attribute - An <input> element with type="url" that must start with http:// or https:// followed by at least one character: - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input

Description

input pattern Attribute - An <input> element with type="url" that must start with http:// or https:// followed by at least one character:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<form action="/action_page.php">
  Homepage: <input type="url" name="website" pattern="https?://.+" title="Include http://">
  <input type="submit">
</form><!-- w  w w.j  av  a2s  .  c om-->

</body>
</html>

Related Tutorials