Open In App

How to create form validation by using only HTML ?

Improve
Improve
Like Article
Like
Save
Share
Report

In Web Development, we often use JavaScript with HTML to validate the form, but we can also do the same via HTML in the following ways.

HTML <input> required Attribute: In input tag of HTML, we can specify via “required attribute”. It informs the browser (HTML5 supported) that the field can’t be left blank. Browsers vary in terms of this implementation, some browsers case a shadow to the box or some show a warning.

  • Example:




    <!DOCTYPE html>
    <html lang="en">
      
    <head>
        <title>Form</title>
    </head>
      
    <body>
        <p>This is a form</p>
        <form>
            <p>Name:</p>
            <input type="text" required>
            <p>Email:</p>
            <input type="email" required>
            <p>Address:</p>
            <input type="text" required>
            <br>
            <button style="margin-top: 5px;">
              Submit
            </button>
        </form>
      
    </body>
      
    </html>

    
    

  • Output:

HTML <input> type Attribute: In input tag, if we require for the user to input their email-id we can set the type attribute to email, the same is applicable to number, date or URL. Similar to the required attribute, different browsers have different implementations.

  • Example:




    <!DOCTYPE html>
    <html lang="en">
      
    <head>
        <title>Form</title>
    </head>
      
    <body>
        <p>This is a form</p>
        <form>
            <p>URL:</p>
            <input type="url">
            <p>Email:</p>
            <input type="email">
            <p>Phone Number:</p>
            <input type="number">
            <br>
            <button style="margin-top: 5px;">
              Submit
            </button>
        </form>
      
    </body>
      
    </html>

    
    

  • Output:

HTML <input> pattern Attribute: We already know, apart from using default rules we can also set our rules as for the pattern of URL, date or price, etc.

  • Example:




    <!DOCTYPE html>
    <html lang="en">
      
    <head>
        <title>Form</title>
    </head>
      
    <body>
        <p>This is a form</p>
        <form>
            <p>URL:</p>
            <input type="url" pattern="https?://.+">
            <p>Date1:</p>
            <input type="date" 
                   pattern="\d{2, 1}/\d{2, 1}/\d{4}">
            <br>
            <button style="margin-top: 5px;">
              Submit
            </button>
        </form>
    </body>
      
    </html>

    
    



Last Updated : 15 Apr, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads