- 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 class="page-title">Блог</p>
<nav class="blog-navigation">
<a href="index.html">На главную</a>
</nav>
</header>
<main>
<article>
<h1>День второй. Хочу быть верстальщиком</h1>
<p>Сегодня весь вечер просидел в интернете. Читал про преимущества работы верстальщиком. Часто отвлекался на видео с котиками, конечно, но кое-что я запомнил:</p>
<ul>
<li>ты делаешь полезное дело</li>
<li>можешь работать удалённо</li>
<li>интересные люди</li>
<li>хорошая зарплата</li>
</ul>
<p>Желания учиться резко прибавилось.</p>
</article>
<aside class="partnership">
Тут могла быть ваша реклама
</aside>
</main>
<footer>
Подвал сайта
</footer>
</body>
</html>
CSS
body {
padding: 0 30px;
font-size: 16px;
line-height: 26px;
font-family: "Arial", sans-serif;
color: #222222;
background: #ffffff url("img/bg-page.png") no-repeat top center;
}
h1 {
font-size: 24px;
line-height: normal;
}
h2 {
font-size: 20px;
line-height: normal;
}
a {
color: #0099ef;
text-decoration: underline;
}
del,
ins {
text-decoration: none;
}
del {
color: #ff4400;
}
ins {
color: rgb(105, 178, 83);
}
pre,
code {
font-family: "Courier New", "Courier", monospace;
color: #3632ad;
background-color: #fafaff;
border: 1px solid #c6c4f4;
border-radius: 4px;
}
pre {
padding: 5px;
}
code {
padding: 2px 5px;
}
pre code {
background-color: transparent;
border: none;
border-radius: 0;
}
.page-title {
font-weight: bold;
font-size: 36px;
line-height: 42px;
font-family: "Verdana", sans-serif;
text-align: center;
}
.avatar-container {
text-align: center;
}
.avatar {
border-radius: 50%;
}
.blog-navigation {
margin-bottom: 30px;
padding: 20px;
color: #ffffff;
background-color: #4470c4;
border: 5px solid #2d508f;
}
.blog-navigation h2 {
margin-top: 0;
}
.blog-navigation ul {
padding-left: 0;
list-style: none;
}
.blog-navigation li {
margin-bottom: 5px;
}
.blog-navigation a {
color: #ffffff;
}
.skills dd {
margin: 0;
margin-bottom: 10px;
background-color: #e8e8e8;
}
.skills-level {
font-size: 12px;
text-align: center;
color: #ffffff;
background-color: #4470c4;
}
.skills-level-ok {
background-color: #47bb52;
}
.partnership {
margin: 30px 0;
padding: 30px;
text-align: center;
color: #ffffff;
background-color: #4a87fa;
background-image: url("img/bg-partnership.svg");
}
footer {
margin-top: 30px;
}
Вы перешли на другую страницу
ЗадачиВыполнено
0
Для блока footer
задайте:
- цвет текста
color
со значением#aaaaaa
, - рамку сверху
border-top
со значением1px solid #aaaaaa
, - и внутренний отступ сверху
padding-top
со значением10px
.