added lasagna.html and linked it from index.html

This commit is contained in:
Andreas Jönsson 2025-04-09 15:14:00 +02:00
parent 77c39e1ca0
commit 5a124f8c41
2 changed files with 23 additions and 0 deletions

12
index.html Normal file
View File

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin Recipes</title>
</head>
<body>
<h1>Odin Recipes</h1>
<h1><a href="recipes/lasangna.html">Lasangna</a></h1>
</body>
</html>

11
recipes/lasangna.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lasangna</title>
</head>
<body>
<h1>Lasagna</h1>
</body>
</html>