-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (122 loc) · 6.01 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./style.css" />
<title>Научиться учиться</title>
</head>
<body class="page">
<header class="header">
<div class="logo logo_place_header"></div>
<h1 class="header__title">Научиться учиться</h1>
<p class="header__subtitle">
Какие современные и эффективные подходы к обучению вы можете
использовать в своей жизни?
<!-- Реализуйте с помощью emmet ссылку с адресом "#", классом "header__link" и текстом "Узнать →" -->
<!-- Write your solution here -->
<a href="#" class="header__link">Узнать →</a>
<!---->
</p>
<!-- Установите путь до картинки two_again.png -->
<!-- Write your solution here -->
<img class="header__main-illustration" src="/images/two_again.png" alt="background">
<!---->
<div class="header__square-pic"></div>
</header>
<main class="content">
<section class="digits">
<h2 class="section-title">Цифры и факты</h2>
<h3 class="section-subtitle">Про учёбу и мозг</h3>
<div class="table">
<div class="table__cell">
<h4 class="table__heading">86 миллиардов</h4>
<p class="table__text">Число нейронов в мозге человека</p>
</div>
<div class="table__cell">
<h4 class="table__heading">2.1 миллиарда</h4>
<p class="table__text">
Число нуждающихся в повышении квалификации
</p>
<p class="table__text">Всемирный Банк, 2017</p>
</div>
<div class="table__cell">
<h4 class="table__heading">1000 терабайт</h4>
<p class="table__text">Объём памяти человека</p>
</div>
<div class="table__cell">
<h4 class="table__heading">500 триллионов</h4>
<p class="table__text">
Число ответственных за обучение нервных синапсов у взрослого
человека
</p>
</div>
<!-- .table__cell>h4. -->
<div class="table__cell">
<h4 class="table__heading">420 миллионов</h4>
<p class="table__text">
Число взрослых людей моложе 25 лет, не имеющих образования для
трудоустройства
</p>
<p class="table__text">Всемирный Банк, 2017</p>
</div>
<!-- Реализуйте с помощью emmet ещё 3 таких же блока как div.table__cell сверху, а текст для них возьмите в файле texts.md -->
<!-- Write your solution here -->
<!-- div.table__heading>h4. -->
<div class="table__cell">
<h4 class="table__heading">420 миллионов</h4>
<p class="table__text">Число взрослых людей моложе 25 лет, не имеющих образования для трудоустройства
Всемирный Банк, 2017</p>
</div>
<div class="table__cell">
<h4 class="table__heading">17-20 лет</h4>
<p class="table__text">Пик обучаемости</p>
</div>
<div class="table__cell">
<h4 class="table__heading">1885 год</h4>
<p class="table__text">Открытие кривой забывания</p>
</div>
<div class="table__cell">
<h4 class="table__heading">1889 год</h4>
<p class="table__text">Открытие условного рефлекса</p>
</div>
<!---->
</div>
</section>
</main>
<footer class="footer">
<div class="footer__columns">
<div class="footer__column footer__column_content_copyright">
<p class="footer__author">© userName</p>
</div>
<div class="footer__column footer__column_content_info">
<h4 class="footer__column-heading">О Хекслете</h4>
<nav class="footer__column-links">
<a href="#" class="footer__column-link">Главная</a>
<a href="#" class="footer__column-link">Концепция</a>
<a href="#" class="footer__column-link">Наставники</a>
</nav>
</div>
<div class="footer__column footer__column_content_social">
<h4 class="footer__column-heading">Соцсети</h4>
<nav class="footer__column-links">
<!-- Добавьте недостающие атрибуты для тегов "a" и "img" -->
<!-- Write your solution here -->
<a class="footer__column-link" href="https/::www.dwijmalina.com">
<img src="images/facebook_color_white.svg"
class="footer__column-icon"> Facebook</a>
<a class="footer__column-link" href="https://vk.com/paul1gon">
<img
src="images/vk_color_white.svg"
class="footer_column-icon"> ВКонтакте</a>
<a class="footer__column-link" href="https://www.instagram.com/paul1gon/?hl=en"><img
src="images/instagram_color_white.svg"
class="footer__column-icon"> Instagram</a>
<!---->
</nav>
</div>
</div>
</footer>
</body>
</html>