forked from joejohnmurphy/switchcalc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.html
More file actions
34 lines (28 loc) · 1.79 KB
/
questions.html
File metadata and controls
34 lines (28 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Social</title>
<link rel="stylesheet" href="css/talker.css">
</head>
<body>
<div class="info" tabindex="1">
<img src="images/info.jpg" alt="You are on questions">
</div>
<div class="btn a how_doing" tabindex="1">How are you doing?</div>
<div class="btn b how_weekend" tabindex="1">How was your weekend?</div>
<div class="btn c what_weekend" tabindex="1">What are you doing this weekend?</div>
<div class="btn d what_sports" tabindex="1">What's your favorite sports team?</div>
<div class="btn e what_tv" tabindex="1">What's your favorite TV show?</div>
<a href="javascript:location.replace('social.html')" class="btn up" tabindex="0">
<img src="images/up.jpg" alt="Go back to the last page">
</a>
<audio id="how_doing" controls style="display:none"><source src="sounds/how_doing.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="how_weekend" controls style="display:none"><source src="sounds/how_weekend.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="what_weekend" controls style="display:none"><source src="sounds/what_weekend.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="what_sports" controls style="display:none"><source src="sounds/what_sports.mp3" type="audio/mpeg"> Your browser does not support the audio element.</audio>
<audio id="what_tv" controls style="display:none"><source src="sounds/what_tv.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>