Addition of recipes and headings

Created 3 recipes and added h1 headings named after the dish
This commit is contained in:
NetMan 2023-12-28 17:40:22 +01:00
parent 4d8686e34d
commit f1c796aa36
4 changed files with 40 additions and 0 deletions

View File

@ -7,6 +7,7 @@
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style.css">
</head> </head>
<body> <body>
<h1>Odin Recipes</h1>
</body> </body>
</html> </html>

13
recipes/lasagna.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lasagna | Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Lasagna</h1>
</body>
</html>

13
recipes/pizza.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza | Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Pizza</h1>
</body>
</html>

13
recipes/potatoes.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Potatoes | Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Potatoes</h1>
</body>
</html>