-
Notifications
You must be signed in to change notification settings - Fork 0
/
alpha_learn.html
48 lines (47 loc) · 2.07 KB
/
alpha_learn.html
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
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Learning ABCs</title>
<link rel="stylesheet" type="text/css" href="fontAwesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap_simplex.min.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Schoolbell">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div id="main">
<header>
<div class="row subheader">
<div class="back-button col-md-2 col-xs-2">
<a class="trans-a" href="alphabet.html"><i class="fa fa-arrow-circle-left fa-4x"></i></a>
</div>
<div class="col-md-5 col-xs-offset-1 col-xs-5">
<a class="trans-a" href="alphabet.html"><img id="title-mini" src="img/logos/abc.png"></a>
</div>
</div>
</header>
<hr class="remove-margin-top">
<div class="instructions-learn">
<p>Tap on the arrows to change the picture.</p>
<p>Tap on the picture to replay the sound</p>
<a class="btn btn-primary start-btn" href="#"> START </a>
</div>
<div id="learning-area">
<div class="container-fluid">
<a id="arrow-left" href="#"><i class="fa fa-chevron-circle-left fa-3x"></i></a>
<img id="learn-pic" src="img/apple.png" alt="placeholder">
<a id="arrow-right" href="#"><i class="fa fa-chevron-circle-right fa-3x"></i></a>
</div>
<div id="word-info">
<h2><strong><span id="letter"></span></strong> for <strong><span id="word"></span></strong></h2>
</div>
</div>
</div>
<!-- load scripts at bottom of page for improved performance -->
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/alpha_scripts.js"></script>
<script type="text/javascript" src="js/ui_scripts.js"></script>
</body>
</html>