- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Test: Marking up an article</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
The Rules of Life of Muffin the Cat
Today we are interviewing the talented instructor and all-around good cat Muffin, who is famous in certain narrow circles.
Muffin has never before communicated with the press, so this interview is an exclusive.
Let’s present you with the rules of life according to Muffin:
Never trust anyone, especially not your master
You will never catch a big fish if you are afraid of losing sight of the shore
Pounce like a panther, bite like a lion
</body>
</html>
CSS
body {
width: 380px;
margin: 0;
padding: 0 10px;
font-family: "Arial", sans-serif;
font-size: 16px;
line-height: 20px;
}
h1 {
font-size: 20px;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.