summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlmightyMiau <almightymeow612@gmail.com>2025-01-14 12:47:28 -0800
committerAlmightyMiau <almightymeow612@gmail.com>2025-01-14 12:47:28 -0800
commitd8e9106137b63f352735676d2d88b008b09a9c89 (patch)
treec9cff3f2cadecbc7ae5bc41a338912b555f93e00
parent185ac3fad9f9965b472cbfabba2f8159915d3e82 (diff)
Create pesto file with boilerplate
Add links between index and pesto recipe
-rw-r--r--index.html1
-rw-r--r--recipes/pesto.html14
2 files changed, 15 insertions, 0 deletions
diff --git a/index.html b/index.html
index 69fd628..18a7fe7 100644
--- a/index.html
+++ b/index.html
@@ -10,5 +10,6 @@
Odin Recipes
</h1>
<a href="recipes/cheesyCreamyRamen.html">Cheesy Creamy Ramen</a>
+ <a href="recipes/pesto.html">Pesto</a>
</body>
</html> \ No newline at end of file
diff --git a/recipes/pesto.html b/recipes/pesto.html
new file mode 100644
index 0000000..4dd03b4
--- /dev/null
+++ b/recipes/pesto.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Document</title>
+</head>
+<body>
+ <h1>
+ Pesto
+ </h1>
+ <a href="../index.html">Home</a>
+</body>
+</html> \ No newline at end of file