- 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 Eleven. Everything should be taken in moderation.</h1>
<p>I realized that I fed the cat too much. The cat decided to remove this item from the to-do list so that he would be able to walk across the snow and not fall through it.</p>
<ol>
<li>Feed the cat</li>
<li>Water the cactus</li>
<li>Turn off the light</li>
<li>Leave the house to run errands</li>
</ol>
</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;
}
time {
color: #6a2cce;
}
You’ve gone to a different page
Goalscompleted
0
- Enclose the text of the first item in the list using the
<del>
tag. - Add another item with the text
Do not forget to eat yourself
after the crossed out list item, - and then enclose the text of the new list item using the
<ins>
tag.
Comments