-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
103 lines (89 loc) · 4.33 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html>
<head>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="lib/materialize-css/dist/css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="lib/materialize-css/templates/starter-template/css/style.css"/>
<link type="text/css" rel="stylesheet" href="css/stylesheet.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<nav class="transparent" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="#" class="brand-logo">
<img src="images/c-quince.png" style="height: 55px;"/>
<img src="images/logo_text.png" alt="C-Quince - Kids in Code"/>
</a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">About</a></li>
<li><a href="demo.html">Demo</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="index.html">About</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="https://github.com/MallowWorld/c-quince">Fork me on GitHub!</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons orange-text text-darken-1">menu</i></a>
</div>
</nav>
<a id="forkme-banner" class="hide-on-med-and-down" href="https://github.com/MallowWorld/c-quince"></a>
<section class="section no-pad-bot section-1" id="index-banner">
<div class="container">
<br />
<br />
<h1 class="header center orange-text text-darken-1">C-QUINCE</h1>
<div class="row center">
<h5 class="header col s12 light">A friendly avian robot used to teach kids how to write code.</h5>
</div>
<div class="row center">
<a href="demo.html" id="download-button" class="btn-large waves-effect waves-light orange darken-1">Try it now!</a>
</div>
<br />
<br />
</div>
</section>
<section class="container section-2">
<div class="section">
<!-- Icon Section -->
<div class="row">
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">code</i></h2>
<h5 class="center">Learn to code while having fun</h5>
<p class="light">Using the <a href="https://mallowworld.wordpress.com/tag/c-quince/">printable group activities</a>, kids can learn to code while having fun in a screen-free classroom environment that encourages social skills, hands-on interactivity, and problem solving from an early age.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">face</i></h2>
<h5 class="center">Kid friendly, Teacher approved</h5>
<p class="light">Kids receive highly engaging activities that are fun and easy to participate in, while teachers receive curriculum that reinforces concepts, teaches new skills, and explores new ideas.</p>
</div>
</div>
<div class="col s12 m4">
<div class="icon-block">
<h2 class="center light-blue-text"><i class="material-icons">group</i></h2>
<h5 class="center">Enhance group activities</h5>
<p class="light">Once your students have started going through the activities, use this open source free online tool to make C-Quince come to life! <a href="demo.html">Check out the demo</a> now and stop back often for updates and new content.</p>
</div>
</div>
</div>
</div>
<br />
<br />
<div class="section">
</div>
</section>
<footer class="page-footer transparent">
<div class="footer-copyright light-blue darken-3 white-text">
<p class="container">Maintained by <a class="orange-text text-darken-3" href="http://mallowworld.wordpress.com/">MallowWorld</a></p>
</div>
<br />
<br />
</footer>
<script type="text/javascript" src="lib/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="lib/materialize-css/dist/js/materialize.min.js"></script>
<script type="text/javascript" src="lib/materialize-css/templates/starter-template/js/init.js"></script>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>