forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvegetables.html
More file actions
46 lines (40 loc) · 2.98 KB
/
vegetables.html
File metadata and controls
46 lines (40 loc) · 2.98 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>Vegetables</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on Vegetables">
</div>
<div class='btn a vegetables' tabindex='1'>vegetables</div>
<div class='btn b asparagus' tabindex='1'>asparagus</div>
<div class='btn c broccoli' tabindex='1'>broccoli</div>
<div class='btn d carrot' tabindex='1'>carrot</div>
<div class='btn e cauliflower' tabindex='1'>cauliflower</div>
<div class='btn f corn' tabindex='1'>corn</div>
<div class='btn g green_beans' tabindex='1'>green beans</div>
<div class='btn h lettuce' tabindex='1'>lettuce</div>
<div class='btn i onions' tabindex='1'>onions</div>
<div class='btn j potato' tabindex='1'>potato</div>
<div class='btn k tomato' tabindex='1'>tomato</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='vegetables' controls style='display:none'><source src='sounds/vegetables.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='asparagus' controls style='display:none'><source src='sounds/asparagus.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='broccoli' controls style='display:none'><source src='sounds/broccoli.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='carrot' controls style='display:none'><source src='sounds/carrot.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='cauliflower' controls style='display:none'><source src='sounds/cauliflower.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='corn' controls style='display:none'><source src='sounds/corn.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='green_beans' controls style='display:none'><source src='sounds/green_beans.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='lettuce' controls style='display:none'><source src='sounds/lettuce.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='onions' controls style='display:none'><source src='sounds/onions.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='potato' controls style='display:none'><source src='sounds/potato.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='tomato' controls style='display:none'><source src='sounds/tomato.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>