- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Multi-level shopping list</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Shopping list
Food
Fish
Fillet of trout, 2 pieces
Crucian carp, 5 pieces
Perch, 10 pieces
Dairy products
Sour cream
Yogurt
Fatty
Low-fat
Things
Toys
Scratching post
Balls, 2 pieces
Care
Comb for fur
Mousse for whiskers
</body>
</html>
CSS
body {
margin: 0;
padding: 0 10px;
font-family: "Arial", sans-serif;
font-size: 16px;
line-height: 20px;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.