odin-recipes/index.html

15 lines
409 B
HTML
Raw Normal View History

2023-12-28 16:36:58 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipes</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Odin Recipes</h1>
<a href="recipes/potatoes.html">Potatoes</a>
<a href="recipes/lasagna.html">Lasagna</a>
<a href="recipes/pizza.html">Pizza</a>
2023-12-28 16:36:58 +00:00
</body>
</html>