forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbreakfast.html
More file actions
46 lines (40 loc) · 2.92 KB
/
breakfast.html
File metadata and controls
46 lines (40 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Breakfast</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on Breakfast">
</div>
<div class='btn a breakfast' tabindex='1'>breakfast</div>
<div class='btn b bacon' tabindex='1'>bacon</div>
<div class='btn c biscut' tabindex='1'>biscut</div>
<div class='btn d cereal' tabindex='1'>cereal</div>
<div class='btn e donut' tabindex='1'>donut</div>
<div class='btn f eggs' tabindex='1'>eggs</div>
<div class='btn g muffin' tabindex='1'>muffin</div>
<div class='btn h oatmeal' tabindex='1'>oatmeal</div>
<div class='btn i pancakes' tabindex='1'>pancakes</div>
<div class='btn j sausage' tabindex='1'>sausage</div>
<div class='btn k waffle' tabindex='1'>waffle</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='breakfast' controls style='display:none'><source src='sounds/breakfast.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='bacon' controls style='display:none'><source src='sounds/bacon.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='biscut' controls style='display:none'><source src='sounds/biscut.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='cereal' controls style='display:none'><source src='sounds/cereal.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='donut' controls style='display:none'><source src='sounds/donut.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='eggs' controls style='display:none'><source src='sounds/eggs.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='muffin' controls style='display:none'><source src='sounds/muffin.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='oatmeal' controls style='display:none'><source src='sounds/oatmeal.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='pancakes' controls style='display:none'><source src='sounds/pancakes.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='sausage' controls style='display:none'><source src='sounds/sausage.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='waffle' controls style='display:none'><source src='sounds/waffle.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>