-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlak.html
140 lines (136 loc) · 5.43 KB
/
lak.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>KEDU - The Educational Community and Curriculum Platform</title>
<meta name="description" content="KUBO Education, KEDU for short, is KUBO’s online curriculum platform" />
<meta name="keywords" content="KUBO Robotics, KUBO, KUBO Education, KEDU, Teachers, Students,
Learning Platform">
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/images/favicon/site.webmanifest">
<link rel="mask-icon" href="assets/images/favicon/safari-pinned-tab.svg" color="#ffffff">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" type="text/css" href="assets/css/styles.css">
<script defer src="assets/js/script.js"></script>
<script defer src="assets/js/profil.js"></script>
<script defer src="assets/js/login.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400" rel="stylesheet">
<script defer src="assets/js/fontawesome-all.js"></script>
</head>
<body>
<header>
<div class="logo">
<a href="dashb.html"><img src="assets/images/kedulogo.png" alt="logo"></a>
</div>
<nav>
<a href="dashb.html">Dashboard</a>
<a href="lplans.html">Lesson Plans</a>
<a href="commu.html">Community</a>
<a href="lak.html" class="active">Learn KUBO</a>
<div class="dropdown">
<a href="javascript:void(0)" class="dropbtn"><span class="fas fa-caret-down"></span></a>
<div class="dropdown-content">
<a href="lak.html" class="active">Introduction to KUBO</a>
<a href="lbv.html">Learn by video</a>
<a href="manuals.html">Manuals</a>
<a href="faq.html">FAQ</a>
</div>
</div>
</nav>
<div class="navright">
<input class="search" placeholder="Search..">
<button><span class="fas fa-search"></span></button>
<div class="dropdown">
<button onclick="myFunprofil()" class="dropprofil"><span class="far fa-user"></span>
<span id="fnUser"></span></button>
<div id="myProfil" class="dropprofil-content" style="right:0;">
<a href="#">My Profil</a>
<a href="index.html">Log Out</a>
</div>
</div>
</div>
</header>
<div class="comm">
<div class="menuu">
<h2>Menu</h2>
<div class="minimenu">
<a href="lak.html" class="active">Introduction to KUBO</a>
<a href="lbv.html">Learn by video</a>
<a href="manuals.html ">Manuals</a>
<a href="faq.html">FAQ</a> </div>
</div>
</div>
<main>
<h1>LEARN ABOUT KUBO</h1>
<div class="columnh2 ">
<h2>KUBO is a simple, intuitive plug-and-learn solution with low complexity
and easy adoption for teachers. The unique hands-on TagTile™ system offers
new ways to learn coding, with broad curriculum relevance to maximize learning outcomes.
It is easily differentiated for instant success no matter what level students are at.
KUBO is suitable for students aged four to 10.</h2>
</div>
<div class="columnlak">
<h2 style="text-align:center">Step by step</h2>
<article class="manuals">
<ul>
<li class="dropmanu">
<button onclick="myFunction(this)" class="manu"><span class="fas fa-angle-down">
</span> First step</button>
<div class="dropmanu-content">
<p>Turn KUBO on by clicking KUBO's head and body together</p>
</div>
</li>
</ul>
</article>
<article class="manuals">
<ul>
<li class="dropmanu">
<button onclick="myFunction(this)" class="manu"><span class="fas fa-angle-down">
</span> Second step</button>
<div class="dropmanu-content">
<p>Put TagTiles down on a flat surface</p>
</div>
</li>
</ul>
</article>
<article class="manuals">
<ul>
<li class="dropmanu">
<button onclick="myFunction(this)" class="manu"><span class="fas fa-angle-down">
</span> Thrid step</button>
<div class="dropmanu-content">
<p>Assemble the TagTiles as you want, but remmember to start with
the start TagTile and end with the end TagTile.</p>
</div>
</li>
</ul>
</article>
<article class="manuals">
<ul>
<li class="dropmanu">
<button onclick="myFunction(this)" class="manu"><span class="fas fa-angle-down">
</span> Fourth step</button>
<div class="dropmanu-content">
<p>Place KUBO on the start TagTile. KUBO will know begin to read your code.</p>
</div>
</li>
</ul>
</article>
<article class="manuals">
<ul>
<li class="dropmanu">
<button onclick="myFunction(this)" class="manu"><span class="fas fa-angle-down">
</span> Fifth step</button>
<div class="dropmanu-content">
<p>Place KUBO on a flat surface, and watch it repeat your code without the TagTiles.</p>
</div>
</li>
</ul>
</article>
</div>
</main>
</body>
</html>