New input types in HTML5
There are some new input types in HTML5. They are:
Email Input Type: email type is used when our form requires a valid input entry for email id by user. When the user clicks on the submit button, it checks for valid email id. Its syntax is given below:
- <!DOCTYPE HTML>
- <html>
- <body>
- <form method="post">
- email id:
- <input type="email"/>
- <br />
- <input type="submit" />
- </form>
- </body>
- </html>
When we run this code, the output will look like below:

URL Input Type:
URL type is used when our form requires a valid input entry for URL by the user.
When the user clicks on submit button, it checks for a valid URL. Its syntax is given
below:

Join the conversation! Your thoughts help the community grow.