- 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>Blog</p>
<nav>
Return to home
</nav>
</header>
<main>
<article>
<h1>Day Three. My cat is offended at me.</h1>
<p>Yesterday, while I was on the Internet, I again forgot to feed my cat. I hope Muffin does not find out about this and continues to give me assignments. I’ll try to make a to-do list.</p>
<p>So. Things to do. They should be carried out only in the order in which they are specified!</p>
<!-- Begin the list here -->
Feed the cat
Water the cactus
Turn off the light
Leave the house to run errands
<p>Now I will definitely not forget to do anything.</p>
</article>
<aside>
Your ad could go here
</aside>
</main>
<footer>
Website 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;
}
You’ve gone to a different page
Goalscompleted
0
- After the second paragraph in
<article>
, add an ordered list<ol>
and enclose all of the unmarked text in it.. - Add the element with the text
Feed the cat
to the list, - then add the element with the text
Water the cactus
- and finally add an element with the text
Turn off the light
.
- Add the last element with the text
Leave the house to run errands
to the list.
Comments