-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdrinks.html
More file actions
31 lines (24 loc) · 1.02 KB
/
drinks.html
File metadata and controls
31 lines (24 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!--****ENTER PAGE TITLE****-->
<title>Drinks</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<script src = "js/menu.js"></script>
<body>
<script language="JavaScript" type="text/javascript">
//****ENTER DISPLAY, SOUND, BTNCLASS, UP (GO BACK TO)****
display = ["DRINKS", "water", "apple juice", "chocolate milk", "fruit punch", "kool aid", "lemonade", "milk", "milkshake", "orange juice", "soda"]
sound = ["drinks_page", "water", "apple_juice", "chocolate_milk", "fruit_punch", "kool_aid", "lemonade", "milk", "milkshake", "orange_juice", "soda"]
btnclass = ["a", "", "", "", "", "", "", "", "", "", ""]
move = ["", "", "", "", "", "", "", "", "", "", ""]
up="food"
</script>
<script src="js/main_buttons.js"></script>
<script src="js/back_buttons.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/talker.js"></script>
</body>
</html>