forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfruits.html
More file actions
44 lines (38 loc) · 2.73 KB
/
fruits.html
File metadata and controls
44 lines (38 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fruits</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on Fruits">
</div>
<div class='btn a fruits' tabindex='1'>fruits</div>
<div class='btn b apple' tabindex='1'>apple</div>
<div class='btn c banana' tabindex='1'>banana</div>
<div class='btn d blueberry' tabindex='1'>blueberry</div>
<div class='btn e grape' tabindex='1'>grape</div>
<div class='btn f orange' tabindex='1'>orange</div>
<div class='btn g peach' tabindex='1'>peach</div>
<div class='btn h pineapple' tabindex='1'>pineapple</div>
<div class='btn i strawberry' tabindex='1'>strawberry</div>
<div class='btn j watermelon' tabindex='1'>watermelon</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='fruits' controls style='display:none'><source src='sounds/fruits.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='apple' controls style='display:none'><source src='sounds/apple.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='banana' controls style='display:none'><source src='sounds/banana.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='blueberry' controls style='display:none'><source src='sounds/blueberry.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='grape' controls style='display:none'><source src='sounds/grape.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='orange' controls style='display:none'><source src='sounds/orange.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='peach' controls style='display:none'><source src='sounds/peach.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='pineapple' controls style='display:none'><source src='sounds/pineapple.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='strawberry' controls style='display:none'><source src='sounds/strawberry.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='watermelon' controls style='display:none'><source src='sounds/watermelon.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>