Open In App

How to define a form for user input using HTML5 ?

Improve
Improve
Like Article
Like
Save
Share
Report

In this article, we will learn how to create a form in a webpage by using the <form> tag. This tag is used to create form for user input. Also there are many elements which are used within form tag.

Syntax:

<form> Form Content... </form>

Example: The following code snippet demonstrates the simple creation of form.




<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML5: How to define an 
        HTML form for user input?
    </title>
  
    <style>
        body {
            text-align: center;
        }
  
        h1 {
            color: green;
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
  
    <h2>
        HTML5: How to define an 
        HTML form for user input?
    </h2>
  
    <form action="#">
        First name:
        <input type="text" 
            placeholder="First Name" value="">
        <br><br>
  
        Last name:
        <input type="text" 
            placeholder="Last Name" value="">
        <br><br>
          
        <input type="submit" value="Submit">
    </form>
</body>
  
</html>                


Output :

Supported Browsers:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari


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