Open In App

HTML | <input type=”url”>

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: 




<!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:

Article Tags :