-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipelist.html
86 lines (84 loc) · 3.77 KB
/
recipelist.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="recipelist.css" />
<!--FONTS-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Cormorant">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Gabarito">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@900&display=swa">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Serif+4">
<!--FONTAWESOME ICONS-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.4.2/css/all.css">
<!--TITLE-->
<title>Recipe List | Odin Recipes</title><link rel="icon" type="image/x-icon" href="misc_images/favicon.ico">
</head>
<body>
<nav id="navbar">
<div class="nav-container" id="logo">
<span>
<i class="fa-solid fa-cloud-meatball"></i><p id="odin">Odin Recipes</p>
</span>
</div>
<div class="nav-container" id="links">
<span>
<a href="index.html">Home</a>
<a href="recipelist.html">Recipe Index</a>
<a href="#credits">Credits</a>
</span>
</div>
<div class="nav-container" id="clodo980">
<span>
<a href="https://github.com/clodo980/odin-recipes"><i class="fa-solid fa-otter"></i></a>
</span>
</div>
</nav>
<main>
<h1>Recipe List</h1>
<div id="all-recipes"> <!--NO COPYRIGHT INFRINGEMENT INTENDED-->
<div class="recipe-card" id="recipe-card-1">
<div class="card-img">
<a href="recipes/Dumplingsoup.html"><img src="recipes/Dumplingsoup.jpg"></a>
</div>
<div class="card-desc">
<a href="recipes/Dumplingsoup.html"><h3>Beef & Mushroom Dumpling Soup</h3></a>
<p>Delectable dumplings in a zesty, ginger-based stock.</p>
</div>
</div>
<div class="recipe-card" id="recipe-card-2">
<div class="card-img">
<a href="recipes/Gambas_al_Ajillo.html"><img src="recipes/Gambas_al_Ajillo.jpg"></a>
</div>
<div class="card-desc">
<a href="recipes/Gambas_al_Ajillo.html"><h3>Gambas al Ajillo</h3></a>
<p>Shrimp sautéed in olive oil with garlic and fiery smoked paprika.</p>
</div>
</div>
<div class="recipe-card" id="recipe-card-3">
<div class="card-img">
<a href="recipes/Jambalaya.html"><img src="recipes/Jambalaya.jpg"></a>
</div>
<div class="card-desc">
<a href="recipes/Jambalaya.html"> <h3>Sausage & Shrimp Jambalaya</h3></a>
<p>A hearty brown rice dish with tomatoes and spices. Customize it with your choice of meats!</p>
</div>
</div>
<div class="recipe-card" id="recipe-card-4">
<div class="card-img">
<a href="recipes/Tostadas.html"><img src="recipes/Tostadas.jpg"></a>
</div>
<div class="card-desc">
<a href="recipes/Tostadas.html"><h3>Shredded Beef Tostadas</h3></a>
<p>Beef, onions, bell peppers, tortillas... go wild with the toppings!</p>
</div>
</div>
</div>
</main>
<footer id="credits">
<span>All recipes by <a href="https://www.youtube.com/@foodwishes">Chef John</a> and friends</span>
<span>•</span>
<span>Copywriting by clodo980 and GPT-3.5</span>
</footer>
</body>
</html>