forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcuisine.html
More file actions
36 lines (30 loc) · 1.86 KB
/
cuisine.html
File metadata and controls
36 lines (30 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cuisine</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on Cuisine">
</div>
<div class='btn a Italian' tabindex='1'>Italian</div>
<div class='btn b Mexican' tabindex='1'>Mexican</div>
<div class='btn c barbeque' tabindex='1'>barbeque</div>
<div class='btn d Asian' tabindex='1'>Asian</div>
<div class='btn e American' tabindex='1'>American</div>
<div class='btn f seafood' tabindex='1'>seafood</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='Italian' controls style='display:none'><source src='sounds/Italian.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='Mexican' controls style='display:none'><source src='sounds/Mexican.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='barbeque' controls style='display:none'><source src='sounds/barbeque.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='Asian' controls style='display:none'><source src='sounds/Asian.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='American' controls style='display:none'><source src='sounds/American.mp3' type='audio/mpeg'> Your browser does not support the audio element.</audio>
<audio id='seafood' controls style='display:none'><source src='sounds/seafood.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>