-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (112 loc) · 4.89 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!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="styles.css">
<title>Flavor Fiesta</title>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="./assests/logorecipe.png" alt="Your Logo">
<span>Flavor Fiesta</span>
</div>
<ul class="nav-links">
<li><a href="#randomwhole">Today's Special</a></li>
<li><a href="#searchInput" id="searchButton">Search</a></li>
<li><a href="https://github.com/kamakship18">Contact</a></li>
</ul>
</nav>
</header>
<div class="main">
<div class="main-content">
<p class="main-text">Discover Your New<br>Favourite Dishes With Our <br><span class="highlight">Tasty Recipes!</span></p>
<p class="sub-text">Elevate your culinary game with our <span class="accent-color">flavorful recipes.</span><br>explore a world of delicious possibilities today!</p>
</div>
<img src="https://25.media.tumblr.com/8aee6486ff0edb78a37ee8633a33314f/tumblr_mg7glxE6AU1rgy0oho1_500.gif" alt="Food Image">
</div>
<!-- random part -->
<div id="randomwhole">
<div class = "random">
<p class="main-text">
So, What Are We Making <span class="highlight">Today?</span>
</p>
<p class="sub-text">Each bite is a burst of sunshine, harmonizing the richness of the seafood with the bright citrusy notes and the warmth of garlic.👩🍳<span class="accent-color"> Our skilled chefs</span><br>have crafted this masterpiece to bring you a unique dining experience.</p>
<div id= "random1">
<!--start-->
<!--<div class = "random-item">
<div class ="random-img">
<img src = "./assests/healthy-img.jpg" alt = "food" >
</div>
<div class = "random-name">
<h2>healthy-food</h2>
<a href = "#" class = "recipe-btn">Get Recipe</a>
</div>
</div> -->
<!--end-->
</div>
</div>
</div>
<!--search bar-->
<div class ="container">
<div class = "meal-whole">
<div class = "meal-search">
<h1 class = "heading">Find your food category</h1>
<div class = "meal-search-box">
<input type = "text" class = "search-control" id="searchInput" placeholder="Enter an ingredient" >
<button type="submit" class="search-btn btn" id="search-btn">🔍
</button>
</div>
</div>
<div class = "meal-result">
<!-- <h2 class = "title">Your Search Results:</h2> -->
<div id= "meal">
<!--start-->
<!--<div class = "meal-item">
<div class ="meal-img">
<img src = "./assests/healthy-img.jpg" alt = "food" >
</div>
<div class = "meal-name">
<h2>healthy-food</h2>
<a href = "#" class = "recipe-btn">Get Recipe</a>
</div>
</div> -->
<!--end-->
</div>
</div>
<div id="blur"></div>
<div class = "meal-details">
<!-- recipe close btn -->
<button type = "button" class = "btn recipe-close-btn" id = "recipe-close-btn">X
</button>
<!-- meal content -->
<div class = "meal-details-content">
<!-- <h2 class = "recipe-title">Meals Name Here</h2>
<p class = "recipe-category">Category Name</p>
<div class = "recipe-instruct">
<h3>Instructions:</h3>
<p>erdfghjsdhfughdfhgdsjgbuyjdgbjdyuzhsgefiuhhdfhvudhshgrkauheryugseygegrsgysreg gyjfse yusgirua
hdfuidshghsbg hduygerskgh
</p>
<p>xhdg sjdfhudksg djhguzdhgb jhesgtulshg hbdgfuzd </p>
</div>
<div class = "recipe-meal-img">
<img src = "./assests/healthy-img.jpg" alt = "">
</div>
<div class = "recipe-link">
<a href = "#" target = "_blank">Watch Video</a>
</div> -->
</div>
</div>
</div>
</div>
<footer>
<div class="footer-links">
<a href="#" class="footer-link">Go to Top</a>
</div>
</footer>
<script src = "script.js"></script>
</body>
</html>