Horje

Full Code Example of HTML Input Type Url

Display a URL Input Field The input type="url" is used for input fields that should contain a URL address:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>Display a URL Input Field</h1>

<p>The <strong>input type="url"</strong> is used for input fields that should contain a URL address:</p>

<form action="/action_page.php">
  <label for="homepage">Add your homepage:</label>
  <input type="url" id="homepage" name="homepage">
  <input type="submit" value="Submit">
</form>

</body>
</html>

Output should be:

Full Code Example of HTML Input Type Url




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Input Types
Uploaded by:
Admin