-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.html
87 lines (81 loc) · 2.85 KB
/
recipes.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image" href="images/logo.png" />
<title>Recipea API</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<nav class="navbar">
<img src="images/coooking.png" alt="" class="logo" />
<a href="#" class="togle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="navbar-links">
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/recipes.html">Recipes</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
<div class="header-actions">
<button class="sign-in">Sign In</button>
<button class="sign-up">Sign Up</button>
</div>
</div>
<!-- Light/Dark Mode Toggle Button -->
<div class="theme-toggle">
<button id="theme-toggle-btn">🌞</button>
</div>
</nav>
</header>
<div class="search-container">
<div class="search-input-wrapper">
<input type="search" id="searching" placeholder="Search here" />
<img src="images/search.png" alt="Search Icon" class="search-icon" />
</div>
<button id="search-btn" onclick="searchRecipe()">Search</button>
</div>
<div class="recipe-container" id="recipe-results"></div>
<!-- Footer section -->
<footer class="footer">
<div class="footer-container">
<div class="footer-left">
<img src="images/logo.png" alt="">
<p>© 2024 Recipe Book. All rights reserved.</p>
</div>
<div class="footer-middle">
<h4>Quick Links</h4>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/recipes.html">Recipes</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
<div class="footer-resources">
<h4>Resources</h4>
<ul>
<li><a href="#">Blog</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</div>
<div class="footer-right">
<h4>Contact Us</h4>
<p>Email: [email protected]</p>
<p>Phone: +252b615555555</p>
</div>
</div>
</footer>
<script src="main.js" defer></script>
<script src="app.js" defer></script>
</body>
</html>