Talk about "Project A"
*Check Homework
2 webpages with at least 1 image and a working link
.zip files
REVIEW :
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{
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;
}
Google fonts
ID vs. Classes
* CSS styles can be applied to general page elements, CSS Classes, and specific items: img { border: 0px; }
this applies to every image tag in the HTML document
.classy { color: red; }
this applies to a CSS class called classy.
<span class="classy" > Example of classy red text </span>
#about { background-color: #ccc; }
This rule applies to just the specific element that has an ID value of about:
HOME WORK (due at the beginning of class, next week)
KEEP WORKING ON "PROJECT A"
this week:
- make your webpages look better
- finish a rough draft (that means completed html pages w/ css)
- SEP. 25th: have a rough draft finished (that means completed html pages w/ css)
NOTE:
failure to have a rough draft turned in (1 week before the due date), will result in a 10% drop in your project grade