-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDinner.html
More file actions
84 lines (66 loc) · 2.03 KB
/
Dinner.html
File metadata and controls
84 lines (66 loc) · 2.03 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
<!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" />
</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">Breakfast</a>
<a href="#lunch">Lunch</a>
<a href="#dinner">Dinner</a>
</div>
</div>
<div class="dropdown">
<a href="#weekend" class="dropbtn">WEEKEND</a>
<div class="dropdown-content" id="weekendDropdown">
<a href="#brunch">Brunch</a>
<a href="#dinner">Dinner</a>
</div>
</div>
<a href="#about">ABOUT</a>
</div>
</nav>
<div class="title-text">
<h2>DINNER</h2>
</div>
<div class="rating-wrapper">
<span>Rice and Chicken</span>
<div data-foodid="1" data-foodname="Southern Fried Chicken" class="rating">
<span data-rating="5">★</span>
<span data-rating="4">★</span>
<span data-rating="3">★</span>
<span data-rating="2">★</span>
<span data-rating="1">★</span>
</div>
</div>
<body>
<div>
<div class="rating-wrapper">
<span> Chicken Alfredo </span>
<div data-foodid="2" data-foodname= "Meatloaf"class="rating">
<span data-rating="5">★</span>
<span data-rating="4">★</span>
<span data-rating="3">★</span>
<span data-rating="2">★</span>
<span data-rating="1">★</span>
</div>
</div>
</body>
<!--<button class="feedback-button"> Feedback</button>-->
<form action = "general-feedback.html">
<button class = "feedback-button">
Feedback
</button>
</form>
<script src="script.js"></script>
<script src="ratingscript.js"></script>
</body>
</html>