image by @giodif for
ConvergeSE.com/2012
http://johndavidhunt.com/theironyardcolakids/tiyhtmlkids.pdf
http://codepen.io/
http://codepen.io/theironyardcolakids/
https://www.w3.org/
https://developer.mozilla.org/en-US/docs/Web
http://caniuse.com/
https://css-tricks.com/
http://learn.shayhowe.com/html-css/
http://thecodeplayer.com/
https://www.codeschool.com/
https://www.codecademy.com/
https://code.org/
https://www.theironyard.com
https://www.theironyard.com/locations/columbia.html
https://twitter.com/TheIronYard
http://www.meetup.com/The-Iron-Yard-Columbia/
Hellow World!
https://unsplash.it/1000/
<img src="https://unsplash.it/1000/">
<iframe width="560" height="315" src="https://www.youtube.com/embed/Jv-QitdhQwQ" frameborder="0" allowfullscreen></iframe>
theironyardcolakids
http is 2 cool!
Adding Content such as text and pictures
Image
<img src="https://unsplash.it/1000/">
Video
<iframe width="560" height="315" src="https://www.youtube.com/embed/Jv-QitdhQwQ" frameborder="0" allowfullscreen></iframe>
<p>This is a paragraph</p>
<h1>My Heading</h1>
<h2>My subHeading</h2>
Div
<div>This would be a division of content</div>
Span
<p>In my text I may want to mark just a <span>short span of words</span></p>
<header>This is a header area</header>
<main>Main content area perhaps</main>
<footer>copyright footer etc</footer>
UL - unordered list
<ul>
<li>I'm first</li>
<li>but we're not ordered</li>
<li>he's got a point...</li>
</ul>
OL - ordered list
<ol>
<li>I'm first</li>
<li>OK fine</li>
<li>he's got a point...</li>
</ul>
Styling Content, such as color
image from: wordpress.org
Google Fonts
<link href="https://fonts.googleapis.com/css?family=Baloo" rel="stylesheet">
font-family: 'Baloo', cursive;
Let's get funky.
<style type="text/css"> body { background: green; } </style>
<link href="https://fonts.googleapis.com/css?family=Baloo" rel="stylesheet">
Let's jump right in. Here is a few steps that I'd like you to try and work through. Open a document in the editor and being making a webpage.
First Phase
Second Phase
<!DOCTYPE html>
<html>
<head>
<title>Iron Yard Class Demo</title>
<style type="text/css">
body {
background: green;
}
</style>
</head>
<body>
<header>
<h1>Iron Yard Class Demo</h1>
</header>
<main>
<p>My whole body should be green. From my header to my footer</p>
<ul>
<li>soccer</li>
<li>family</li>
</ul>
</main>
<footer>
<p>copyleft © JdH 2116;</p>
</footer>
<!-- by JdH -->
</body>
</html>
Third Phase
sample code on next page (down)
<!DOCTYPE html>
<html>
<head>
<title>Iron Yard Class Demo</title>
<link href="https://fonts.googleapis.com/css?family=Baloo" rel="stylesheet">
<style type="text/css">
* {margin: 3em;}
img {
display: block;
margin: 0 auto;
}
main {
border: 4px solid black;
display: block;
margin: 0 auto;
width: 50%;
padding: 12px;
}
h1, h2 {
font-family: 'Baloo', cursive;
}
</style>
</head>
<body>
<header>
<h1>John Hunt</h1>
<img src="https://api.adorable.io/avatars/285/johndavidhunt@gmail.com.png" alt="JohnHunt">
</header>
<main>
<p>Yo this is me</p>
<p>Yep, I'm John David Hunt</p>
</main>
</body>
</html>
Fourth Phase
sample code on next page (down)
<!DOCTYPE html>
<html>
<head>
<title>Iron Yard Class Demo</title>
<link href="https://fonts.googleapis.com/css?family=Baloo" rel="stylesheet">
<style type="text/css">
img,header,main,footer,h1 {margin: 3em;}
img {
display: block;
margin: 0 auto;
}
main {
border: 4px solid black;
display: block;
margin: 0 auto;
width: 80%;
padding: 12px;
}
h1, h2 {
font-family: 'Baloo', cursive;
}
</style>
</head>
<body>
<header>
<h1>John Hunt</h1>
<img src="https://api.adorable.io/avatars/285/johndavidhunt@gmail.com.png" alt="JohnHunt">
</header>
<main>
<p>Yo this is <a href="https://about.me/johndavidhunt">me</a></p>
<p>Yep, I'm <a href="http://johndavidhunt.com">John David Hunt</a></p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Jv-QitdhQwQ" frameborder="0" allowfullscreen></iframe>
</main>
<footer>
copyright © JdH 2016;
</footer>
</body>
</html>
Still going?
Still going?