- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Сайт начинающего верстальщика</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<p>Блог</p>
<nav>
<a href="day-15.html">Вернуться к записи</a>
</nav>
</header>
<main>
<article>
<figure>
<img src="files/keks-3.jpg" width="486" height="315" alt="Кексик">
<figcaption>Кекс хвалит нас за значительные успехи в обучении.</figcaption>
</figure>
<nav class="pagination">
<a href="photo-2.html">< Назад</a>
<!-- Доработайте эту ссылку -->
<a href="#">Вперёд ></a>
</nav>
</article>
<aside>
Тут могла быть ваша реклама
</aside>
</main>
<footer>
Подвал сайта
</footer>
</body>
</html>
CSS
body {
padding: 0 30px;
font-size: 14px;
line-height: 22px;
font-family: "Georgia", serif;
color: #222222;
}
h1 {
font-size: 20px;
line-height: normal;
}
nav {
color: #888888;
}
aside {
margin: 20px 0;
color: #c4c4c4;
}
a[href] {
color: #0099ef;
text-decoration-line: underline;
}
figure {
margin-left: 0;
margin-right: 0;
}
figure img {
vertical-align: middle;
border: 8px solid rgb(202, 224, 248);
}
figcaption {
width: 502px;
padding-bottom: 8px;
font-size: 12px;
letter-spacing: 0.02em;
font-style: italic;
text-align: center;
background-color: rgb(202, 224, 248);
}
.pagination a {
display: inline-block;
margin-right: 30px;
margin-bottom: 15px;
}
.pagination {
text-align: center;
}
Вы перешли на другую страницу
ЗадачиВыполнено
0
- Удалите атрибут
href
у ссылкиВперёд
. - Затем добавьте ей атрибут
title
c текстомФото в галерее закончились
.