<!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>
    <label for="search">google:</label>
    <input type="search" id="search">
    <button type="submit">search</button>
</body>
<body>
    <label for="email">email:</label>
    <input type="email" id="email">
    <button type="submit">submit</button>
</body>
<body>
    <label for="webadresse">webadresse</label>
    <input type="url" id="webadresse">
    <button type="submit">submit</button>
</body>
<body>
    <label for="telefon">tlf. number</label>
    <input type="tel" id="telefon">
    <button type="submit">submit</button>
</body>
<body>
    <label for="number">favorite number</label>
    <input type="number" id="number">
    <button type="submit">submit</button>
</body>
<body>
    <label for="range">age</label>
    <input type="range" id="range">
</body>
<body>
    <label for="dato">dato</label>
    <input type="date" id="dato">
    <button type="submit">submit</button>
</body>
<body>
    <label for="dato time">dato og tid</label>
    <input type="datetime-local" id="dato time">
    <button type="submit">submit</button>
</body>
<body>
    <label for="month">month</label>
    <input type="month" id="month">
    <button type="submit">submit</button>
</body>
<body>
    <label for="time">time</label>
    <input type="time" id="time">
    <button type="submit">submit</button>
</body>
<body>
    <label for="farve">color</label>
    <input type="color" id="farve">
    <button type="submit">submit</button>
</body>
</html>