-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu Direction</title>
<link rel="stylesheet" type="text/css" href="style_directed.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
</head>
<body>
<header>
<div class="header-content">
<div class="logo">
<a href="#"><img src="AP.png" alt="LOGO"></a>
</div>
<nav>
<ul>
<li><h2><a href="#">Home</a></h2></li>
<li><h2><a href="#">About</a></h2></li>
<li><h2><a href="#">Contact</a></h2></li>
</ul>
</nav>
</div>
</header>
<div class="wrapper">
<div class="container">
<h3>Enter Today's Date</h3>
<form action="/redirect" method="post">
<label for="inputDate">Date:</label>
<input type="date" id="inputDate" name="inputDate">
<!-- Other input fields for feedback data -->
<button type="submit">Go to Menu</button>
</form>
</div>
</div>
<button class="Compare"><a href="http://localhost:3000/dishes">Compare</a></button>
<footer>
<div class="footer-content">
<div class="footer-section about">
<h3>About</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque imperdiet, nulla at placerat faucibus, urna libero vulputate erat, a ultricies ligula eros nec diam.</p>
</div>
<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-section contact">
<h3>Contact Us</h3>
<p>Email: [email protected]</p>
<p>Phone: +123 456 7890</p>
<p>Address: 123, Main Street, Anytown, USA</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Your Website. All rights reserved.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
<script src="script_directed.js"></script>
</body>
</html>