-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLunch.html
More file actions
88 lines (66 loc) · 2.32 KB
/
Lunch.html
File metadata and controls
88 lines (66 loc) · 2.32 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Capstone project</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="rating.css" rel= "stylesheet" type="text/css" />
<link href="check.css" rel= "stylesheet" type="text/css" />
<link href="menu.css" rel= "stylesheet" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<nav>
<div class="navbar">
<div class="dropdown">
<a href="#weekday" class="dropbtn">WEEKDAY</a>
<div class="dropdown-content" id="weekdayDropdown">
<a href="Breakfast.html">Breakfast</a>
<a href="Lunch.html">Lunch</a>
<a href="Dinner.html">Dinner</a>
</div>
</div>
<div class="dropdown">
<a href="#weekend" class="dropbtn" id="weekend">WEEKEND</a>
<div class="dropdown-content" id="weekendDropdown">
<a href="Brunch.html" id="brunch">Brunch</a>
<a href="WeekendDinner.html" id="weekend-dinner">Dinner</a>
</div>
</div>
<a href="https://ba130874-111b-4aa8-b236-89bbd4ba36ff-00-16l6537n7xy4i.spock.replit.dev/about.html">ABOUT</a>
</div>
</nav>
<div class="title-text">
<h2>LUNCH</h2>
</div>
<div class="rating-wrapper">
<!-- check box -->
<!-- <div class="popup">
<input type="checkbox" id="myCheck" onclick="myFunction()">
<span class ="popuptext" id="myPopup">This food item is still here...</span>
</div> -->
<div class="menu" id="lunchMenu">
</body>
<form action = "index.html">
<button class="button material-symbols-outlined" style="font-size:36px;" >
home
</button>
</form>
<form action = "foodFeedback.html">
<button class = "foodfeedback-button">
Food Feedback
</button>
</form>
<!--<button class="feedback-button"> Feedback</button>-->
<form action = "general-feedback.html">
<button class = "feedback-button">
Website Feedback
</button>
</form>
<script src="script.js"></script>
<script src="ratingscript.js"></script>
<script src="check.js"></script>
<script src ="lunch.js"></script>
</body>
</html>