- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The website of a beginning coder</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<p class="page-title">Blog</p>
<nav class="blog-navigation">
<a href="index.html">Return to home</a>
</nav>
</header>
<main>
<article>
<h1>Day Two. I want to become a coder</h1>
<p>Today I spent the whole evening on the Internet. I read about the advantages of working as a coder. I often spent my free time watching cat videos, of course. But then I remembered something:</p>
<ul>
<li>You are helping a useful cause</li>
<li>You can work remotely</li>
<li>Interesting people</li>
<li>Good salary</li>
</ul>
<p>My desire to learn has dramatically increased.</p>
</article>
<aside>
Your ad could go here
</aside>
</main>
<footer>
Website 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;
}
.page-title {
font-size: 36px;
}
.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;
}
footer {
margin-top: 30px;
}
You’ve gone to a different page
Goalscompleted
0
- Change the font size to
2.5em
for the.page-title
class, - and then increase the font size of the whole
body
tag to20px
and make sure that the heading also increases proportionally in font size.
Comments