28/28 100% Проверьте пожалуйста код

    <header class="page-header">Форма отзыва</header>
    <main>
        <form action="/echo" method="post" oninput="ratingput.value=rating.value">
            <fieldset>
            <legend>Личные данные</legend>
            <div class="half-width">
                <label for="id">ID отзыва</label>
                <input id="id" type="text" name="id_form" value="12345" disabled>
            </div>
            <div class="half-width">
                <label for="name">Имя путешественника</label>
                <input id="name" type="text" name="name_form" value="Кекс" required>
            </div>
            </fieldset>
            <fieldset>
            <legend>Отзыв о поездке</legend>
            <div class="half-width">
                <label for="country">Страна визита</label>
                <input id="country" type="search" name="country_form" value="Норвегия" required>
            </div>
            <div class="half-width">
                <label for="city">Город</label>
                <select id="city" name="city_form">
                    <option value="Осло">Осло</option>
                        </select>
                        </div>
            <div class="half-width">
            <label for="rating">Оценка поездки</label>
                0 <input id="rating" type="range" name="rating_form" min="0" max="10" step="1" value="10"> 10
            </div>
            <div class="half-width output-area">
                <output name="ratingput">10</output>
            </div>
            <label for="review">Текст отзыва</label>
            <textarea id="review" name="review_form" rows="5">Это было просто мяу!</textarea>
            </fieldset>
            <fieldset>
            <legend>Оценка отеля</legend>
            <div class="half-width">
                <label for="hotel">Название отеля</label>
                <input id="hotel" type="text" pattern="^[a-zA-Z\s0-9]+$" placeholder="Название по-английски" required>
            </div>
            <div class="half-width">
                <label for="arrival_date">Дата въезда</label>
                <input id="arrival_date" type="text" pattern="[0-9]{2}-[0-9]{2}-[0-9]{4}" placeholder="В формате дд-мм-гггг" required>
            </div>
            <div class="one-third-width">
                <label for="color">Цвет кроватки</label>
                <input id="color" type="color" name="color" value="#ff0000">
            </div>
            <div class="two-third-width">
                <label for="dish_rating">Оценка обедов
                </label> 
                <select id="dish_rating" name="dish_rating_form">
                    <option value="Подушечки оближешь">Подушечки оближешь</option>
                        </select>
            </div>
            <label for="fish">Самая вкусная рыба</label>
            <select id="fish" name="fish_form" multiple size="5">
            <option name="1" selected>Норвежский лосось</option>
            <option name="2">Зубатка</option>
            <option name="3" selected>Морской окунь</option>
            <option name="4">Карась</option>
            <option name="5">Зеркальный карп</option>
        </select>
        </fieldset>
            <div class="buttons">
               <input type="submit" value="Оценить"> 
               <input type="reset" value="Сбросить">
            </div>
            
        </form> 
    </main>
    <footer class="page-footer"></footer>

Код не проходит валидность. Данный атрибут указывается без значения.
Выдержка из теории:
“Есть два способа: использование атрибута readonly и использование атрибута disabled”.
Вы возможно перепутали с autocomplete.

Перед отправкой кода на форум, прогони код тут http://validator.w3.org

1 лайк

да и само сочетание disabled / required немного странное - с одной стороны, поле заблокировано для ввода текста, с другой - обязательное для заполнения

Спасибо, понял ошибки и исправил