-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (104 loc) · 3.78 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
104
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digikids - Student Projects</title>
<link rel="shortcut icon" href="logo.png" type="image/png" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="main.css" />
</head>
<body>
<nav>
<a href="http://digikids.co.ke" target="_blank" rel="noopener noreferrer"
><img src="./In_Page_Logo.png" alt="digikids logo" /></a
><button id="typeSelector">
<span class="btnTxt">Course: <u>All</u> | Age Group: <u>All</u></span>
<span class="hoverTxt">Click to Select</span>
</button>
</nav>
<main>
<section class="introSection">
<div class="introTextWrap">
<h1>Digikids Student Projects</h1>
<h2>inspiring innovation through digital literacy</h2>
<p>
all the projects displayed below were developed <br />
by students in a digikids BootCamp
</p>
</div>
</section>
<section class="cards">
<div class="card hide">
<div class="cardImage">
<img src="" alt="" srcset="" class="projectImg" />
</div>
<div class="cardText">
<p class="name"></p>
<!-- <p class="ageGroup"></p> -->
<p class="bootcamp"></p>
<!-- <p class="date"></p> -->
<a
href=""
target="_blank"
rel="noopener noreferrer"
class="projectLink"
>View Project</a
>
</div>
</div>
</section>
<section class="partners">
<h3 class="partnersHeading"></h3>
<div class="partnersWrap"><div class="partner"></div></div>
</section>
</main>
<footer>
<p>all rights reserved © digikids 2014 - 2021</p>
<p>
<a href="http://digikids.co.ke/register">register</a>
<a href="mailto:[email protected]">contact</a>
<a href="http://digikids.co.ke">home</a>
<a href="tel:+254743665574">0743665574</a>
<a href="http://elearning.digikids.co.ke">e-learning</a>
</p>
</footer>
<script type="module" src="./script.js"></script>
<section class="sidebar" id="sidebar">
<div class="close" id="closeBtn">
<button id="sidebarClose">
close <span class="closeX">x</span>
</button>
</div>
<ul>
<li class="course" aria-haspopup="true">
<h5>Course</h5>
<ul class="dropdown" aria-label="sub-menu">
<li>Creative Computing with Scratch</li>
<li>Web Development with HTML/CSS</li>
<li>Web Development with JavaScript</li>
<li>Web Development with PHP & MySQL</li>
<li>Web Development with WordPress</li>
<li>Introduction to Python</li>
<li>Game Development with Python</li>
<li>Android App Development</li>
</ul>
</li>
<li class="ageGroup" aria-haspopup="true">
<h5>Age Group</h5>
<ul class="dropdown" aria-label="sub-menu">
<li>Novice: 6-8 years</li>
<li>Explorer: 9-11 years</li>
<li>Star: 12-17 years</li>
</ul>
</li>
</ul>
<button class="filter">Filter</button>
</section>
<section class="sidebarUnderlay" id="sidebarUnderlay"></section>
</body>
</html>