M
M
MiraTa2019-09-09 20:16:46
Yandex
MiraTa, 2019-09-09 20:16:46

Yandex Practicum- lesson 9 Adding several classes, where is the mistake?

Task:
Assign additional classes to all blocks with the "image" class.
1st — near class
2nd — module class
3rd — fonts class
4th — colors class
Code;

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>4 правила вёрстки</title>
  <link rel="stylesheet" href="reset.css">
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div class="header">
    <h1>4 правила вёрстки</h1>
    <h2>
      Задача веб-дизайна — сделать не только красиво. Задача веб-дизайна —
      сделать как можно проще и удобнее для пользователя. Дизайнеры знают
      это, но это важно знать и разработчикам.
    </h2>
  </div>
  <div class='card'> 
    <div class="image"> </div>
         <div class="image near">  </div>
         <div class="image module">  </div>
           <div class="image fonts">  </div>
             <div class="image colors">  </div>
   
       <h3>
        Степень близости
       </h3>
        <p>
         Простое правило, которое часто нарушают: ставьте рядом элементы с похожим смыслом и отделяйте их от остальных элементов пустым пространством. Пустота — одно из мощнейших средств воздействия на восприятие макета.
       </p>
  </div>
    <div class='card'>  
     <div class="image"> </div>
       <div class="image near">  </div>
         <div class="image module">  </div>
           <div class="image fonts">  </div>
             <div class="image colors">  </div>
      
      <h3>
        Модульная сетка
       </h3>
       <p>
        Выбор модульной сетки зависит от задачи. Пользуйтесь размещенными в интернете инструментами для автоматического расчета размеров блочных элементов.
       </p>
   </div>   
    <div class='card'> 
      <div class="image"></div>
           <div class="image near">  </div>
         <div class="image module">  </div>
           <div class="image fonts">  </div>
             <div class="image colors">  </div>
      
        <h3>
        Выбор шрифтов
        </h3>
        <p>
        Не больше трёх шрифтов на сайт. Лучше два. Один шрифт для заголовков, второй — для всех остальных текстов, третий — для выделения важных слов внутри текстов. И всё.
       </p>
    </div>  
    <div class='card'> 
      <div class="image"> </div>
           <div class="image near">  </div>
         <div class="image module">  </div>
           <div class="image fonts">  </div>
             <div class="image colors">  </div>
     
        <h3>
        Цвета
        </h3>
        <p>
       Ещё 200 лет назад поэт Гёте придумал симметричный цветовой круг для подбора колористического решения страниц. Простое и безотказное сочетание — дополнительные цвета, расположенные на круге друг напротив друга. 
       </p>
     </div>  
</body>
</html>

Yandex says: There should be four elements with the image class.
Help to understand, please.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
G
GavriKos, 2019-09-09
@MiraTa

There should be four elements with the image class.

Well, count how many you have. Even within a single card block there are five of them.
to all is to all. And you have just image

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question