Skip to content

Commit 8b65f3c

Browse files
committed
Adding mobile web weeks 1 to 3
1 parent 8fdb758 commit 8b65f3c

File tree

17 files changed

+175
-0
lines changed

17 files changed

+175
-0
lines changed

mobileWeb/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CoderDojo Girls Sessions
2+
November 2014
3+
4+
Our aim is to start with HTML & CSS basics while building a web page suitable for PhoneGap.

mobileWeb/week1/codergirl.jpg

12.6 KB
Loading

mobileWeb/week1/index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<html>
2+
3+
<head>
4+
<title>This is my first app</title>
5+
<link rel="stylesheet" type="text/css" href="style.css"/>
6+
</head>
7+
<body>
8+
<h1 id="thefirstHeader">Hi there, this is my fist app</h1>
9+
10+
<h2>The second header</h2>
11+
12+
<h3>The third header</h3>
13+
<div id="pic1">
14+
<img src="codergirl.jpg"/>
15+
</div>
16+
17+
</body>
18+
19+
</html>

mobileWeb/week1/style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
body{
2+
background-color:#cc0AC9;
3+
4+
}
5+
6+
h1#thefirstheader{
7+
color:#8271f5;
8+
}
9+
h2{
10+
color:#f571e4;
11+
}
12+

mobileWeb/week2/._notessarah

4 KB
Binary file not shown.

mobileWeb/week2/Thumbs.db

19 KB
Binary file not shown.

mobileWeb/week2/app.zip

13.1 KB
Binary file not shown.

mobileWeb/week2/codergirl.jpg

12.6 KB
Loading

mobileWeb/week2/index.html

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<html>
2+
3+
<head>
4+
<title>This is my first app</title>
5+
<link rel="stylesheet" type="text/css" href="style.css"/>
6+
</head>
7+
<body>
8+
<div id="container">
9+
<h1>CoderDojoGirls@DCU</h1>
10+
11+
<p id="para1">Welcome to the coolest place on the planet</p>
12+
13+
<h2>Be Cool</h2>
14+
<p id="para2">The only rule is be cool</p>
15+
16+
<div id="codergirl">
17+
<img src="codergirl.jpg">
18+
</div>
19+
</div>
20+
21+
</body>
22+
23+
</html>

mobileWeb/week2/style.css

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
body{
2+
background-color:#c471f5;
3+
}
4+
5+
h1{
6+
color:#8271f5;
7+
}
8+
9+
h2{
10+
color:#f571e4;
11+
}
12+
13+
p#para1{
14+
color:#3f0760;
15+
font-size:12;
16+
font-family:Tahoma;
17+
}
18+
19+
p#para2{
20+
color:#0f0217;
21+
font-size:16;
22+
font-family:Georgia;
23+
}
24+
div#codergirl{
25+
width:40%;
26+
height:60%;
27+
}
28+
29+
30+
31+

0 commit comments

Comments
 (0)