-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 2.76 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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Menu Signage</title>
<link rel="stylesheet" href="css/MenuSignage.css" />
<link rel="stylesheet" href="https://use.typekit.net/iei5wpp.css" />
<script src="js/MenuSignage.js"></script>
<script
src="https://kit.fontawesome.com/6b31c68f8b.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<div class="MenuTitle">
<span id="DayTitle"></span>
</div>
</header>
<div class="MenuContainer">
<div class="MenuSubContainer">
<!--Breakfast-->
<div class="MenuBreakfast"></div>
<!--Lunch-->
<div class="MenuLunch"></div>
</div>
<div class="MenuSubContainer">
<!--Dinner-->
<div class="MenuDinner"></div>
<!--Dessert-->
<div class="MenuDessert"></div>
</div>
</div>
<div class="MenuLogo">
<img id="Img1" src="assets/Student Housing Logo-W.png" alt="UDS Logo" />
<img id="Img2" src="assets/UDS-Logo.png" alt="Student Housing Logo" />
</div>
<div class="DailyMenuQR">
<span>Discover our Daily Dishes</span>
<img src="css/images/QR-Dining-Menu.png" alt="QR Code" />
</div>
<footer>
<div class="ScrollingText">
<span>
University Dining Services makes every effort to ensure the items
listed on our menus are up to date and correct.
<i class="fa-solid fa-paw" style="color: #f7f7f7"></i> However, the
items listed are not a guarantee and are subject to change without
notice. <i class="fa-solid fa-paw" style="color: #f7f7f7"></i> Lunch
Feature Stations are available from 11am-2pm, or until the special
runs out.
<i class="fa-solid fa-paw" style="color: #f7f7f7"></i> Dinner Action
Stations are available from 4pm-7pm, or until the special runs out.
<i class="fa-solid fa-paw" style="color: #f7f7f7"></i> University
Dining Services makes every effort to ensure the items listed on our
menus are up to date and correct.
<i class="fa-solid fa-paw" style="color: #f7f7f7"></i> However, the
items listed are not a guarantee and are subject to change without
notice. <i class="fa-solid fa-paw" style="color: #f7f7f7"></i> Lunch
Feature Stations are available from 11am-2pm, or until the special
runs out.
<i class="fa-solid fa-paw" style="color: #f7f7f7"></i> Dinner Action
Stations are available from 4pm-7pm, or until the special runs out.
<i class="fa-solid fa-paw" style="color: #f7f7f7"></i>
</span>
</div>
</footer>
</body>
</html>