-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (56 loc) · 3.19 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;500;700&display=swap" rel="stylesheet">
<title>Odin Recipes</title>
</head>
<body>
<section id="presentation">
<h1>Odin recipes</h1>
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fi1.wp.com%2Fmuscleandhealth.com%2Fwp-content%2Fuploads%2F2020%2F07%2Fchef-rush.png%3Ffit%3D1500%252C840%26ssl%3D1&f=1&nofb=1" alt="Power-Chef">
<h2>We have 3 recipes on today's menu:</h2>
</section>
<section id="recipes">
<a class="button" href="recipes/recipe1/index.html">
<div class="description">
<h2>Pork Shoulder Cutlets with fennel and Asparagus Salad</h2>
<p>Opposites attract: this bright, sprightly salad is just the thing to cut through the richness of succulent pan-fried pork.</p>
</div>
<div class="image-container">
<div class="image">
<img src="https://assets.bonappetit.com/photos/57acf2fdf1c801a1038bc93c/1:1/w_1600,c_limit/pork-shoulder-cutlets-with-fennel-and-asparagus-salad.jpg" alt="pork-shoulder">
</div>
</div>
</a>
<a class="button" href="recipes/recipe2/index.html">
<div class="description">
<h2>Salt-and-Pepper Steak</h2>
<p>What's inexpensive, versatile, and crazy tasty? Skirt steak. It also cook in a flash, which make it tailor-made for grilling.</p>
</div>
<div class="image-container">
<div class="image">
<img src="https://assets.bonappetit.com/photos/57ad4192f1c801a1038bcafa/1:1/w_1920,c_limit/salt-and-pepper-steak.jpg" alt="Steak">
</div>
</div>
</a>
<a class="button" href="recipes/recipe3/index.html">
<div class="description">
<h2>Chicken Schnitzel</h2>
<p>There are some evenings in which chicken schnitzel is the most perfect thing imagineable. Embrace it.</p>
</div>
<div class="image-container">
<div class="image">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2F2.bp.blogspot.com%2F-y_QhPwoLyzk%2FU_1iJL3jcTI%2FAAAAAAAAQHc%2FzV7hZ_xJ8DI%2Fs1600%2FChicken%252Bschnitzel.jpg&f=1&nofb=1" alt="Chicken-Schnitzel">
</div>
</div>
</a>
</section>
<footer>All the recipes of this website and the images are from (<a href="https://www.bonappetit.com/recipes/slideshow/quick-meat-recipes">https://www.bonappetit.com/recipes/slideshow/quick-meat-recipes</a>). If you want to see all the recipes i recommend you to visit the original page. This website is a project with the objective of learning.</footer>
</body>
</html>