Advertisement
andruhovski

HTML5 Input types demo

Nov 22nd, 2017
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <title>Demo</title>
  6.     <meta charset="UTF-8">
  7.     <meta name="viewport" content="width=device-width, initial-scale=1">
  8. </head>
  9.  
  10. <body>
  11.     <div>
  12.         <h3>type="color"</h3>
  13.         <input type="color" name="color" value="#ff0000">
  14.     </div>
  15.  
  16.     <div>
  17.         <h3>type="date"</h3>
  18.         <input type="date" name="date" value="2017-06-01">
  19.     </div>
  20.  
  21.     <div>
  22.         <h3>type="datetime-local"</h3>
  23.         <input type="datetime-local" name="datetime-local" value="2017-06-01T08:30">
  24.     </div>
  25.  
  26.     <div>
  27.         <h3>type="email"</h3>
  28.         <input type="email" name="email" value="abc@example.com">
  29.     </div>
  30.  
  31.     <div>
  32.         <h3>type="month"</h3>
  33.         <input type="month" name="month" value="2017-06">
  34.     </div>
  35.  
  36.     <div>
  37.         <h3>type="number"</h3>
  38.         <input type="number" name="number" value="123">
  39.     </div>
  40.  
  41.     <div>
  42.         <h3>type="range"</h3>
  43.         <input type="range" id="range" name="range" min="0" max="11" value="7" step="1">
  44.         <output for="range" id="output"></output>
  45.     </div>
  46.  
  47.     <div>
  48.         <h3>type="tel"</h3>
  49.         <input type="tel" name="tel" value="333-4444-4444">>
  50.     </div>
  51.  
  52.     <div>
  53.         <h3>type="time"</h3>
  54.         <input type="time" name="time" value="13:30">
  55.     </div>
  56.  
  57.     <div>
  58.         <h3>type="url"</h3>
  59.         <input type="url" name="url" value="http://localhost:3000">>
  60.     </div>
  61.  
  62.     <div>
  63.         <h3>type="week"</h3>
  64.         <input type="week" name="week" value="2017-W47">
  65.     </div>
  66.  
  67. </body>
  68.  
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement