List all input type - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:input

Description

List all input type

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
 </head> <!-- w w  w.  ja  v a 2  s .  co  m-->
 <body> 
  <p> <input type="color" name="color" placeholder="color"> </p> 
  <p> <input type="date" name="date" placeholder="date"> </p> 
  <p> <input type="datetime" name="datetime" placeholder="datetime"> </p> 
  <p> <input type="email" name="email" placeholder="email"> </p> 
  <p> <input type="month" name="month" placeholder="month"> </p> 
  <p> <input type="number" name="number" placeholder="number"> </p> 
  <p> <input type="search" name="search" placeholder="search"> </p> 
  <p> <input type="tel" name="tel" placeholder="tel"> </p> 
  <p> <input type="time" name="time" placeholder="time"> </p> 
  <p> <input type="url" name="url" placeholder="url"> </p> 
  <p> <input type="week" name="week" placeholder="week"> </p>  
 </body>
</html>

Related Tutorials