What's the RSA & who is Ken Robinson
- Start with Ken Robinson : Changing_Education_Paradigms
- Discussion
- A new ADHD article: Sep. 3, 2013,
*CHECK HOMEWORK
File Management
code: HTML (5)
<!doctype html>
<html>
<head>
<title>363</title>
</head>
<body>
<p>
some text
<br>
<img src="http://ryansmithart.com/courses/382/1/me.jpg">
</p>
</body>
</html>
*view page source
WWW history
<a href="http://www.website.com"> Link to a webpage
<a href="..." target="_blank">
Headings:
<h1> </h1>
<div id="name">
CSS
<link href="363.css" rel="stylesheet" type="text/css" />
using an external style sheet
an example of a CSS page
styling links
a:link {color:#FF0000;}
Center divs using CSS:
#wrap{
text-align:left;
max-width:1000px;
min-width:600px;
margin-left:auto;
margin-right:auto;
width:60%;
background-color:white;
padding:10px;
}
CSS3:
html{
font-size:12px;
font-family:Helvetica, Arial, sans-serif;
height:100%;
overflow-y: scroll;
background: url(images/bg.gif) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
<style>
.small{
font-size:.75em;
}
</style>
<span class="small">SMALL LETTERS</span>