1/28 не могу найти ошибку

<!DOCTYPE html>
<html lang="ru">
  <head>
    <title>Испытание: формы — вспомнить всё</title>
    <meta charset="utf-8">
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <form action="/echo" method="post">
      <label for="name-id">Имя</label>
      <input type="text" id="name-id" name="username"></input>
      <div class="half-width">
        <label for="born">Дата рождения</label>
        <input class="date" type="text" id="born" name="userborn"></input>
      </div>
      <div class="half-width">
        <label for="color-id">Цвет</label>
        <select name="color" id="color-id">
          <option value="ginger">Рыжий</option>
        </select>
      </div>
      <input type="checkbox" id="allow">
      Разрешать гладить</input>
      <label for="secret">Секретное блюдо</label>
      <input type="password" id="secret"></input>
      <div class="buttons">
        <input type="submit" value="Сохранить"></input>
      </div>
    </form>
  </body>
</html>

image

input - это одиночный тег

Большое спасибо!!!