Skip to content

Commit

Permalink
Added week 3 files
Browse files Browse the repository at this point in the history
  • Loading branch information
noelking committed May 12, 2012
1 parent 9df46ce commit 41eec4c
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 1 deletion.
2 changes: 1 addition & 1 deletion week2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<head>
<title>Welcome To CoderDojo @ DCU</title>
<link rel="stylesheet" type="text/stylesheet" href="style.css"></link>
<link rel="stylesheet" type="text/css" href="style.css"></link>
</head>

<body>
Expand Down
16 changes: 16 additions & 0 deletions week3/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Week 3 HTML Course @ CoderDojo DCU
===================================

Aim
---------
This week we targeted the following areas

* Download filezilla
* Start the page again, lets see if you understand what we have done
* Add a small border to the center div
* Create an center div
* Add some padding inside this div
* Put div around image
* Css the image and div to resize the image
* Put border on the image and show difference between margin and padding
* Put the new website online
Binary file added week3/coder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
39 changes: 39 additions & 0 deletions week3/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<html>

<head>
<title>Welcome To CoderDojo @ DCU</title>
<link rel="stylesheet" type="text/css" href="./style.css"></link>
</head>

<body>
<div class="mainDiv">

<h1>Coder Dojo @ DCU</h1>

<img src="coder.png"></img>
<p>
Welcome to the first coderdojo session in DCU. We have very few rules, but our main one
is to be cool. We will only teach areas that are cool such as web site, android, iphone and
game development. If there is something cool out there we have not seen let us know.

This course will start with basics of HTML and then bring you on an adventure to
build what ever you imagination decides on the internet.

Some of the most popular pages on the internet have:
<ul>
<li>Games</li>
<li>Videos</li>
<li>Blogs</li>
<li>Social Media</li>
<li>Cool images </li>
</ul>
</p>

<iframe width="420" height="315" src="http://www.youtube.com/embed/ImJD-nDxnc4" frameborder="0" allowfullscreen>
</iframe>
</div>
</body>

</html>
21 changes: 21 additions & 0 deletions week3/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
body {
background-color: black;
color: white;
}

h1 {
color: gray;
}

p {
font-size: 12px;
font-family: comic sans ms;
}

div.mainDiv {
margin-left: auto;
margin-right: auto;
width: 960px;
background-color: white;
color: black;
}

0 comments on commit 41eec4c

Please sign in to comment.