Skip to content

Commit 0d228e8

Browse files
committed
Adding class material from CoderDojoGirls teaching sessions
We thought 3 streams: basic beginnersHtml, flowerGame and pianoGame. Teaching notes are missing in a lot of cases and as two of us were swapping teaching the sessions the changeover from week to week was sometimes inconsistent. Ideally plan to clean up this teaching material so it is more useful for others.
1 parent cc149c5 commit 0d228e8

File tree

304 files changed

+6639
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

304 files changed

+6639
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
CoderDojoGirls
22
==============
33

4-
CoderDojoGirls modification of the 'Balloon game' to a girl friendly 'Flower game'
4+
beginnerHtmlCss: CoderDojoGirls beginner html and css course as we first thought it.
5+
flowerGame: Similar to CoderDojo balloon game but aimed at younger girls
6+
pianoGame: Modification of the piano came developed by Catrina Carrigan in CoderDojoDCU
57

8+
DISCLAIMER:
9+
Teaching notes are missing in a lot of cases. The finished code for a week often has mistakes in it (some on purpose!).
10+
All code was uploaded as we finished a class and there may be gaps between weeks as Instructors swapped around.
35.5 KB
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<html>
2+
<head>
3+
<title>CoderDojo@DCU</title>
4+
<link rel="stylesheet" type="text/css" href="style.css"/>
5+
6+
</head>
7+
8+
<body>
9+
<div id="container">
10+
<h1>My fashion site</h1>
11+
<h2>Jeans</h2>
12+
13+
<div id="mylogo">
14+
<h3>Tops</h3>
15+
<img src="logo.gif"/>
16+
</div>
17+
</div>
18+
</body>
19+
</html>
5.46 KB
Loading
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
body {
2+
background-color: lightblue;
3+
color: red;
4+
}
5+
6+
img {
7+
padding-left: 20px;
8+
}
9+
10+
div#mylogo {
11+
background-color: yellow;
12+
margin: 30px;
13+
}
14+
15+
div#container {
16+
background-color: hotpink;
17+
}
35.5 KB
Loading
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<html>
2+
<head>
3+
<title>Welcome to CoderDojoGirls @ DCU</title>
4+
<link rel="stylesheet" type="text/css" href="style.css"/>
5+
6+
7+
</head>
8+
9+
<body>
10+
<h1> CoderDojoGirls @ DCU Is Here </h1>
11+
12+
<img src="codergirl.jpeg">
13+
14+
<p>
15+
This is our first Coderdojo in DCU, our aim is
16+
to teach cool programming techniques. Do you want
17+
to learn Website Development like Facebook, web games
18+
such as angry birds and Android or iPhone apps
19+
</p>
20+
21+
<iframe width="560"
22+
height="315"
23+
src="http://www.youtube.com/embed/TOrnUquxtwA" frameborder="0" allowfullscreen></iframe>
24+
</body>
25+
26+
</html>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
2+
3+
4+
5+
body{
6+
background-color:#cc0AC9;
7+
color:white;
8+
}
9+
h1{
10+
color:#20630D;
11+
}
12+
p{
13+
color:blue;
14+
font-size:12px;
15+
font-family:Georgia;
16+
17+
}
18+
iframe{
19+
frameborder:1;
20+
}
21+
img{
22+
height:150px;
23+
width:200px;
24+
}
25+
26+
35.5 KB
Loading
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<html>
2+
<head>
3+
<title>Welcome to CoderDojoGirls @ DCU</title>
4+
<link rel="stylesheet" type="text/css" href="style.css"/>
5+
6+
7+
</head>
8+
9+
<body>
10+
<div id="container">
11+
<h1> CoderDojoGirls @ DCU Is Here </h1>
12+
13+
<img src="codergirl.jpeg">
14+
15+
<p>
16+
This is our first Coderdojo in DCU, our aim is
17+
to teach cool programming techniques. Do you want
18+
to learn Website Development like Facebook, web games
19+
such as angry birds and Android or iPhone apps
20+
</p>
21+
<div id="justinVideo">
22+
<iframe width="560"
23+
height="315"
24+
src="http://www.youtube.com/embed/TOrnUquxtwA" frameborder="0" allowfullscreen></iframe>
25+
</div>
26+
</div>
27+
</body>
28+
29+
</html>

0 commit comments

Comments
 (0)