ad

Friday, October 17, 2025

How to html input type email

 https://webdesigningtheory.blogspot.com


html <input type="email">

 <input> element with type="element"
 
 Email  use    number, letter, characters , digit ,alphabetical  Upper and lowercase

html <input type="email">

  Example 


<!DOCTYPE html>
 <html>
<body>
<h1>Email tag </h1><br>
<form>
Email: <br>
<input type="email" name="email"><br><br>
<input type= "submit"> <br>
</form>
</body>
</html>

html <input type="email">

Explain program 

  Step 1 ]

<!Doctype html>

  • <!doctype html>  always be the first line of any HTML document.

Step 2 ]

   <html> and </html>

   html  is the root element.

Step 3 ]

<body> and </body>

body  is  main content area.

All visible content inside to  the <body> tag

Step 4]

<h1> email id </h1>


  displays large heading title "email tag"

Step 5]

<form> .......</form>

 a form that  enter an email 

Step 6]

<input type="email" name="email"><br><br>
  field  user enter an email 

Step 6]

<input type=input type="submit"> <br>
 
input type ="  button submit the form
Value =  "submit" - text  set button text 

 html <input type="email"> 

Output 

No comments:

Post a Comment