forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsnacks.html
More file actions
42 lines (36 loc) · 2.48 KB
/
snacks.html
File metadata and controls
42 lines (36 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Snacks</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on Snacks">
</div>
<div class='btn a snack' tabindex='1'>snack</div>
<div class='btn b brownie' tabindex='1'>brownie</div>
<div class='btn c chips' tabindex='1'>chips</div>
<div class='btn d cookie' tabindex='1'>cookie</div>
<div class='btn e cracker' tabindex='1'>cracker</div>
<div class='btn f gummy' tabindex='1'>gummy</div>
<div class='btn g nuts' tabindex='1'>nuts</div>
<div class='btn h pretzel' tabindex='1'>pretzel</div>
<div class='btn i snack_bar' tabindex='1'>snack bar</div>
<a href="javascript:location.replace('food.html')" class="btn up" tabindex="0">
<img src="images/up.jpg" alt="Go back to the last page">
</a>
<audio id='snack' controls style='display:none'><source src='sounds/snack.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='brownie' controls style='display:none'><source src='sounds/brownie.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='chips' controls style='display:none'><source src='sounds/chips.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='cookie' controls style='display:none'><source src='sounds/cookie.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='cracker' controls style='display:none'><source src='sounds/cracker.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='gummy' controls style='display:none'><source src='sounds/gummy.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='nuts' controls style='display:none'><source src='sounds/nuts.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='pretzel' controls style='display:none'><source src='sounds/pretzel.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='snack_bar' controls style='display:none'><source src='sounds/snack_bar.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src="js/talker.js"></script>
</body>
</html>