forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwant.html
More file actions
33 lines (27 loc) · 1.55 KB
/
want.html
File metadata and controls
33 lines (27 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>I Want</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on I want">
</div>
<a href="javascript:location.replace('break.html')" class="btn a" tabindex="1">I want a break</a>
<div class="btn b eat" tabindex="1">I want to eat</div>
<div class="btn c drink" tabindex="1">I want a drink</div>
<div class="btn d listen" tabindex="1">I want to listen to music</div>
<div class="btn e watch" tabindex="1">I want to watch something</div>
<a href="javascript:location.replace('home.html')" class="btn up" tabindex="0">
<img src="images/up.jpg" alt="Go back to the last page">
</a>
<audio id="eat" controls style="display:none"><source src="sounds/eat.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="drink" controls style="display:none"><source src="sounds/drink.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="listen" controls style="display:none"><source src="sounds/listen.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="watch" controls style="display:none"><source src="sounds/watch.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>