Skip to content

Commit 8fdb758

Browse files
committed
Conflicts: README.md
2 parents 111b953 + 0522492 commit 8fdb758

File tree

318 files changed

+6646
-174
lines changed

Some content is hidden

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

318 files changed

+6646
-174
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
CoderDojo Girls Sessions
2-
November 2014
1+
CoderDojoGirls
2+
==============
33

4-
Our aim is to start with HTML & CSS basics while building a web page suitable for PhoneGap.
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
7+
- *mobileWebGame:* (November 2014) A mobile web site that is suitable for uploading to PhoneGap.
8+
9+
DISCLAIMER:
10+
Teaching notes are missing in a lot of cases. The finished code for a week often has mistakes in it (some on purpose!).
11+
All code was uploaded as we finished a class and there may be gaps between weeks as Instructors swapped around.
12+
13+
More detail on sessions here: http://coderdojodcu.com/sessions/girls/previous/
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)