Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/examples/yes_no/index.html
blob: c453ae062e5ba2ac5708ceda5f05a70b2f4456be (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr">
<head>
<meta name="keywords" content="karma,javascript,html5,sugar,sugarlabs,gsoc,ole,nepal" />

<title>My First Karma Lesson!</title>
<link rel="shortcut icon" href="http://karma.sugarlabs.org/favicon.ico" />

<style type="text/css">

#scoreboard { border: 1px solid black;
	      width: 300px;
	      height: 50px;}

</style>
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery.jgrowl_minimized.js"></script>
<script type="text/javascript" src="js/yes_no.js"></script>
<script type="text/javascript" src="js/Gettext.js"></script>
<script type="text/javascript" src="locale/en-US.json"></script>
</head>

<body>
<div id="localAssets">

<img src="images/flag.png" alt="This be a localized image"></img>


</div>
<div>
<audio id="audioYes" src="./sounds/yes.ogg">
Your browser does not support the audio element.
</audio>
<audio id="audioNo" src="./sounds/no.ogg">
Your browser does not support the audio element.
</audio>
<audio id="audioRestart" src="./sounds/restart.ogg">
Your browser does not support the audio element.
</audio>

 
</div>

<div id="btnsNav">

<button id="btnLoEN">English</button>
<button id="btnLoNE">Nepali</button>
<button id="btnLoHE">Hebrew</button>
<button id="btnLoES">Spanish</button>
</div>
<div id="altTxts">
<img src="" alt="This is alternate Text for an image"></img>
<img src="" alt="Some more alternate Text"></img>
<img src="" alt=""></img>
</div>
<div id="main">
<div id="scoreboard" class="horizontal_elements translate">
  <label id="lblScore">The <big>big</big> score is</label>
  <label id="txtScore">0</label>
</div>
<div id="buttons" class="horizontal_elements translate">
<button id="btnYes">Yes</button>
<button id="btnNo">No!</button>
<button id="btnRestart">Restart</button>

<div> Turn your volume all the way up to hear the Audio! It is very quiet</div>


</div>
</div>
<button id="btnRTL">Change Direction of Layout</button>


</body>
</html>