forked from hussien89aa/TeachKidsProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (41 loc) · 1.48 KB
/
index.html
File metadata and controls
51 lines (41 loc) · 1.48 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<html>
<head>
<title>Tech Kids</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap/css/bootstrap.min.css">
<script src="css/bootstrap/jquery.min.js"></script>
<script src="css/bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<!--
<script type="text/javascript">
document.write(examples.simple.helloWorld());
// Exercise the .helloName template
document.write('<hr>' + examples.simple.helloName({name: 'Ana'}));
// Exercise the .helloNames template
document.write('<hr>' + examples.simple.helloNames(
{name: 'Ana', additionalNames: ['Bob', 'Cid', 'Dee']}));
</script>
-->
<div class="container boxColor">
</br>
</br>
<div style="text-align: center">
<h2>Welcome to Kids programming</h2>
<img src="images/KidsProgramming.png" class="img-rounded" alt="Cinque Terre" width="204" height="336">
</div>
<div class="panel panel-primary">
<div class="panel-heading">Select test that you want to take</div>
<div class="panel-body">
<ul class="list-group">
<li class="list-group-item"><a href="ControlMath.html"> Math test</a> </li>
<li class="list-group-item"><a href="ControlLogic.html"> Logic test</a></li>
<li class="list-group-item"><a href="ControlOperation.html"> Solve Problems</a></li>
<li class="list-group-item"><a href="ControlBalloons.html"> Balloons Game</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>