-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Sebvu Recipes</title>
<link rel="stylesheet" href="styles.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<header class="centered-content">
<h1>Sebvu Recipes</h1>
<img
id="main-img"
src="assets/pusheen-cooking.gif"
alt="Cat pushing on dough with a mixing bowl and broken egg to the side"
/>
<p>
Welcome to Sebvu Recipes by <strong>sebvu!</strong> Inspired by
<a
href="https://www.theodinproject.com/about"
target="_blank"
rel="noopener noreferrer"
>The Odin Project.</a
>
</p>
<p>
Here are a collection of my personal favorite recipes below, check out
what interests you and your taste buds. 😺
</p>
</header>
<div class="recipe">
<h2>Recipes</h2>
<ul>
<li>
<a href="pages/pork-sinigang.html">Pork Sinigang Recipe:</a> Recipe by
my amazing mother.
</li>
<li>
<a href="pages/sopa-de-fideo.html">Sopa De Fideo Recipe:</a> Recipe by
my lovely girlfriend.
</li>
<li>
<a href="pages/chicken-florentine.html">Chicken Florentine Recipe:</a>
Recipe by a guy I met recently.
</li>
</ul>
</div>
</body>
</html>