-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.html
60 lines (60 loc) · 1.85 KB
/
results.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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="mockData.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Results - Dishes.Dish</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="page-wrapper">
<header>
<nav>
<ul>
<li><a href="mainpage.html">Home</a></li>
<li><a href="maincourses.html">Main Courses</a></li>
<li><a href="desserts.html">Desserts</a></li>
<li><a href="aboutus.html">About Us</a></li>
</ul>
</nav>
</header>
<main class="content">
<!-- Add your main content here -->
<section>
<h2>Search Results</h2>
<div class="search-results-recipe-grid">
<!-- Search results will be displayed here -->
</div>
</section>
</main>
</div>
<footer>
<div class="footer-container">
<div class="footer-column">
<h3>About Dishes.Dish</h3>
<p>Dishes.Dish is a food recipe website that helps you find delicious recipes based on the ingredients you have on hand. Discover new main courses, desserts, and more.</p>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="maincourses.html">Main Courses</a></li>
<li><a href="desserts.html">Desserts</a></li>
<li><a href="aboutus.html">About Us</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Contact Us</h3>
<p>1234 Street Name, City, State, 12345</p>
<p>Email: [email protected]</p>
<p>Phone: (123) 456-7890</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2023 Dishes.Dish. All rights reserved.</p>
</div>
</footer>
<script src="mockData.js"></script>
<script src="scripts.js"></script>
</body>
</html>