- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Marking up a recipe</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
A secret recipe for fish cookies
Trout fillet, 2 pcs
Water, H2O or AquaLife®, 100 ml
Cauliflower, 100 g
Flour, 1 cup
Salt, to taste
Cream, 200 ml
Cooking instructions:
Wash and dry trout and then boil it for 10 minutes.
Grind the fish in a blender, then mix in cream and flour.
Form cookies and bake them in the oven for 20 minutes at 180 degrees.
</body>
</html>
CSS
body {
width: 400px;
margin: 0;
padding: 0 10px;
font-family: "Arial", sans-serif;
font-size: 16px;
line-height: 20px;
}
h1 {
font-size: 18px;
}
.warning {
color: red;
}
- Goal
- Result
- Overlay
- Differences
- ?
Press Compare to send your code for review.