-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (58 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>recipes</title>
<link rel="stylesheet" href="styles.css">
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body>
<h1 id="title"><center>The Recipe Book</center></h1>
<div class="search">
<form action="#">
<input type="text"
placeholder=" Search Recipes"
name="search">
<button class="btn btn-secondary">
Search
</button>
</form>
</div>
<ul>
<li class="item first"><a href="lasagna.html">1. Lasagna :</a></li>
<p class="item first para1">
<img src="recipes/lasagna.jpeg" alt="lasagna" class="img">
Lasagna is a wide, flat sheet of pasta.
Lasagna can refer to either the type of noodle or to the typical
lasagna dish which is a dish made with several layers of lasagna
sheets with sauce and other ingredients, such as meats and cheese,
in between the lasagna noodles.
</p>
<li class="item second"><a href="instant-pot-chicken-and-dumpling.html">2. Instant pot chicken and dumplings :</a></li>
<p class="item first para1">
<img src="recipes/ipc-and-dumplings.jpg" alt="instant pot chicken" class="img">
Instant Pot Chicken and Dumplings is full of tender chicken and
vegetables with easy homemade dumplings. One of the best
Instant Pot dinner recipes!
</p>
<li class="item third"><a href="Baked-kale-chips.html">3. Baked kale Chips :</a></li>
<p class="item first para1">
<img src="recipes/kalechips.jpeg" alt="lasagna" class="img">
These crispy oven-baked kale chips are a great homemade snack.
You cannot stop at just eating one, just like potato chips.
Great for parties, too.
</p>
</ul>
<div class="waviy">
<span style="--i:1">more</span>
<span style="--i:2">recipes</span>
<span style="--i:3">coming</span>
<span style="--i:4">soon</span>
<span style="--i:5">.</span>
<span style="--i:6">.</span>
<span style="--i:7">.</span>
<span style="--i:8">.</span>
</div>
</body>
</html>