-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashb.html
117 lines (111 loc) · 4.86 KB
/
dashb.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
<!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" class="active">Dashboard</a>
<a href="lplans.html">Lesson Plans</a>
<a href="commu.html">Community</a>
<a href="lak.html">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">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>
<main>
<div class="welcome">
<h1>WELCOME TO KEDU</h1>
<h3> KEDU is an online service, made for sharing educational material and
assignments <br> centered around the KUBO Robots. KEDU will help you
communicate with teachers around the world. <br> No matter if you want
to share your experience, get inspired, or keep in touch with the latest
developments <br>in the world of KUBO, then KEDU is for you.</h3>
</div>
<div class="dash">
<div class="latestplan">
<h2>Latest Added Lesson Plan</h2>
<br>
<h3>KUBO Coding Licens</h3>
<img src="assets/images/article1.jpg" alt="Lesson plan 1 photo">
<p> This lessonplan contains a detailed guide to KUBO aswell as af thorough
introduction to TagTile coding and crucial 21st-century skills like
communication, collaboration, creativity and critical thinking.
Learn about Paths, Loops, and more.</p>
<ul>
<li><span class="fas fa-sticky-note"></span> Normal Lesson</li>
<li><span class="fas fa-clock"></span> 5 Lessons, 11.5 Hours</li>
<li><span class="fas fa-book"></span> Math, Science</li>
<li><span class="fas fa-star"></span> 1., 2., 3., 4., 5., kindergarten. Grade</li>
<li> Made by: KEDO</li>
</ul>
</div>
<div class="latestchat">
<h2>Latest Added Community Chat</h2>
<div class="dashchat">
<h3>Can someone tell me how KUBO works</h3>
<div class="user"><span class="fas fa-user-circle"></span>
</div> Gerda
<p>
I teach a third class where we have just been given our first KUBO robot,
and begin to use it in class. However, I have the problem that I can not
figure out how to use it. Hope someone can help me.
</p>
<p>5 comments</p>
</div>
<div class="dashchat">
<h3>Can someone tell me how KUBO works</h3>
<div class="user"><span class="fas fa-user-circle"></span>
</div> Gerda
<p>
I teach a third class where we have just been given our first KUBO robot,
and begin to use it in class. However, I have the problem that I can not
figure out how to use it. Hope someone can help me.
</p>
<p>5 comments</p>
</div>
</div>
</div>
</main>
</body>
</html>