ID отзыва
Имя путешественника
<fieldset>
<legend>Отзыв о поездке</legend>
<div class="half-width">
<label for="country">Страна визита</label>
<input text="" value="Норвегия">
</div>
<div class="half-width">
<label for="city">Город</label>
<select name="city" disabled>
<option value="Осло">Осло</option>
</select>
</div>
<div class="half-width">
<label for="rating">Оценка поездки
</label>
0<input type="range" id="dayscount" name="dayscount" min="1" max="10" step="1">10
</div>
<div class="half-width output-area">
<output name="daysoutput"></output>
</div>
<label for="review">Текст отзыва</label>
<textarea name="comment" id="comment-field" rows="5">Это было просто мяу!</textarea>
</fieldset>
<fieldset>
<legend>Оценка отеля</legend>
<div class="half-width">
<label for="hotel">Название отеля</label>
<input text="text" placeholder="Название по-английски">
</div>
<div class="half-width">
<label for="arrival_date">Дата въезда</label>
<input type="text" placeholder="В формате дд-мм-гггг">
</div>
<div class="one-third-width">
<label for="color">Цвет кроватки</label>
<input type="color" name="color">
</div>
<div class="two-third-width">
<label for="dish_rating">Оценка обедов</label>
<select name="rating" disabled>
<option value="Подушечки оближешь">Подушечки оближешь</option>
</select>
</div>
<label for="fish">Самая вкусная рыба</label>
<select id="fish" multiple size="5">
<option selected>Норвежский лосось</option>
<option>Зубатка</option>
<option selected>Морской окунь</option>
<option>Карась</option>
<option>Зеркальный карп</option>
</select>
</fieldset>
<div class="buttons">
<input type="submit" value="Оценить">
<input type="reset" value="Сбросить">
</div>
</form>
</main>
<footer class="page-footer"></footer>