<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML5 form elementer</title>
</head>
<body>
    <form >
        <input type="search" placeholder="search">
        <input type="url" placeholder="url">
        <input type="tel" placeholder="tel">
        <input type="number" placeholder="number">
        <input type="range">
        <input type="date">
        <input type="datetime">
        <input type="datetime-local">
        <input type="month">
        <input type="week">
        <input type="time">
        <input type="color">
    </form>
</body>
</html>