| 123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <input type="date"/>
- <input type="time"/>
- <input type="month"/>
- <input type="datetime-local"/>
- <input type="email"/>
- <input type="number"/>
- <input type="password"/>
- <input type="search"/>
- <input type="tel"/>
- <input type="text"/>
- <input type="url"/>
- <input type="range"/>
- <input type="image"/>
- <input type="reset"/>
- <input type="submit"/>
- <input type="button" value="Button"/>
- <input type="color"/>
- <input type="checkbox"/>
- </body>
- </html>
|