- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Diving Deeper</title>
<link rel="stylesheet" href="headings.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
“Wolverine” Pet Store
Specials
Delivery
Moscow
Other regions
Product catalog
Pet food
Meat
Dry
Wet
Cans
Pouches
Fish
Toys
</body>
</html>
CSS
body {
width: 400px;
margin: 0;
padding: 0 20px;
font-size: 16px;
line-height: 1.4;
font-family: "Arial", sans-serif;
color: black;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.