forked from mbaezpy/trentose2015-midterm1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·48 lines (38 loc) · 1.5 KB
/
index.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>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Put your js and css references here -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1><img src="img/logo.png"><span>Lingo</span></h1>
<div class="jumbotron">
<!-- content of the lesson that should be visible during the practice -->
<div class="practice">
<!-- sentences that are loaded dynamically -->
<ul class="sentences">
</ul>
<!-- the area where the user enters the data -->
<div class="options">
<p>
<input type="text" name="iSolution" class="form-control" placeholder="Insert the solution">
</p>
<p>
<button class="btn opt-continue">Continue</button>
</p>
</div>
</div>
<!-- the area that should be visible after the practice -->
<div class="final" hidden>
<h3> You have solved <span id="tot-good">XXX</span> of <span id="tot">XXX</span></h3>
</div>
</div>
<script src="jquery-2.1.0.min.js"></script>
<script src="app.js"></script>
<script src="data.js"></script>
</body>
</html>