<input> Tag in HTML 5

In this article I am going to explain about <input> tag in Html 5.
  • 1755
Definition

The <input>  tag use for defined a input area where user can enter the data or any information. The input tag must be use within form tag.

Browser that supports <input> tag

 Internet explorer, Mozilla firefox, Google chrome, Opera and Safari browsers.

Lets take an example of <input> tag

<html>
  <head>
    <form action="test.aspx">
  Uname: <input type="text" name="Uname" /><br />
  Password: <input type="text" name="Password" /><br />
</form>
   </head>
</html>

Output

input1.jpg
 

Further Readings

You may read more about HTML 5 Tags:  here

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.