HTML5 form - Анкета

multimedia-html_bac

HTML

<form action="action.php" method="get">
    <div>
        <tr></tr><label for="birthday">Ваш день рождения</label><br>
        <input type="date" name="birthday" id="birthday">
    </div>
    <div>
        <label for="email">Ваш E-mail</label><br>
        <input type="email" name="email" id="email">
    </div>
    <div>
        <label for="phone">Ваш телефон</label><br>
        <input type="phone" name="phone" id="phone">
    </div>
    <div>
        <label for="color">Ваш любимый цвет</label><br>
        <input type="color" name="color" id="color">
    </div>
    <div>
        <label for="weight">Оцените этот сайт (по шкале от 1 до 10)</label><br>
        <input type="range" max="160" step="20" name="weight" id="weight">
    </div>
    <input type="submit" name="submit" id="submit">
</form>

CSS

div {margin-bottom:10px}
label {font-style:italic}