Open In App

HTML | <input type=”url”>

Last Updated : 02 Jun, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <input type=”url”> is used to define a field that entered a URL. This input value is automatically validated before submitted the form. 

Syntax: 

<input type="url"> 

Example: 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Input Type URL
    </title>
</head>
<style>
    #Geek_p {
        font-size: 30px;
        color: green;
    }
</style>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>HTML &lt;Input Type="URL"&gt;
</h2>
    <form>
        <input type="url"
               placeholder="search a URL">
        <br>
        <br>
 
    </form>
</body>
 
</html>


Output:

  

Supported Browsers:

  • Google Chrome 1 and above
  • Firefox
  • Edge 12 and above
  • Opera 11 and above
  • Internet Explorer 10 and above
  • Apple Safari

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads