-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·80 lines (65 loc) · 2.76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>C<>DE Recipedia</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<header>
<h1 class="header-title">C<>DE Recipedia</h1>
<h2 class="header-subtitle">an adventurous recipe collection</h2>
</header>
<main>
<ul class="recipe-list">
<li class="recipe-list-item">
<a class="recipe-list-item--link" href="sasha-astiadi/meatball-curry/index.html">
<figure class="recipe-list-item--figure">
<img class="recipe-list-item--image" src="https://tastykitchen.com/wp-content/uploads/2013/05/Tasty-Kitchen-Blog-Lamb-Meatballs-in-a-Spicy-Curry-01.jpg" alt="">
</figure>
<h3 class="recipe-list-item--title">Lamb Meatball Curry by Sasha</h3>
</a>
</li>
<li class="recipe-list-item">
<a class="recipe-list-item--link" href="Dora/Pancakes/recipe-webtec.html">
<figure class="recipe-list-item--figure">
<img class="recipe-list-item--image" src="Dora/Pancakes/images/crepes.jpg" alt="">
</figure>
<h3 class="recipe-list-item--title">The best recipe you will find on the Internet</h3>
</a>
</li>
<li class="recipe-list-item">
<a class="recipe-list-item--link" href="dinko-verzi/croatian-style-stew/index.html">
<figure class="recipe-list-item--figure">
<img class="recipe-list-item--image" src="dinko-verzi/croatian-style-stew/images/step-03.jpg" alt="">
</figure>
<h3 class="recipe-list-item--title">Croatian-style stew by Dinko's grandma</h3>
</a>
</li>
<li class="recipe-list-item">
<a class="recipe-list-item--link" href="">
<figure class="recipe-list-item--figure">
<img class="recipe-list-item--image" src="" alt="">
</figure>
<h3 class="recipe-list-item--title">This. Is. So. Gooood.</h3>
</a>
</li>
<li class="recipe-list-item">
<a class="recipe-list-item--link" href="kjell-hoffhenke/tastywraps/index.html">
<figure class="recipe-list-item--figure">
<img class="recipe-list-item--image" src="https://thestingyvegan.com/wp-content/uploads/2018/02/vegan-Mediterranean-wraps-picture.jpg" alt="">
</figure>
<h3 class="recipe-list-item--title">Tasty wraps, as preferred</h3>
</a>
</li>
<li class="recipe-list-item">
<a class="recipe-list-item--link" href="nate/recipe/index.html">
<figure class="recipe-list-item--figure">
<img class="recipe-list-item--image" src="nate/recipe/public/pic/Coq1.jpg" alt="">
</figure>
<h3 class="recipe-list-item--title">This. Is. So. Very.Gooood.</h3>
</a>
</li>
</ul>
</main>
</body>
</html>