4:00pm - 4:15
WWW History
4:15 - 4:30pm
How the WebWorks
4:30 - 4:45 (Uploading to a Server)
FUGU (FTP) Free Download
Step by step FUGU instructions (UMBC)
1) Save your homework as index.html, then save it in a 382 folder in a umbc directory
2) Upload the 382 folder (with your images, and index.html page) to UMBC's server
3) Check to make make sure it worked: http://userpages.umbc.edu/~username/382/index.html
*4) Email me a link to the URL address (now), and if you can't get it uploaded email me your photo, and your HTML code.
ryansmithstudent@aol.com
5:00 - 5:15
Hexadecimal System (RGB)
This is HTML code:
<body bgcolor="#00FF00">
5:15 - 5:50(CSS)
What is CSS?
CSS Syntax
This is an example of how to put CSS in the head of your html code (don't do it this semester) :
<style type="text/css">
p{ background-color:#FFF; padding: 2em; color:#999; width:500px; }
</style>
Instead, in the head of your html code, put a link to a separate .css file:
<link href="382.css" rel="stylesheet" type="text/css" />
Home Work:
1) Create a separate .css file, and link the .html page from week 1 to your new css code.
- What you did last week - What you should have uploaded before next class - Here's my CSS
2) Be creative, use at least 1 other color aside from black, white, or gray.
Pick appropriate colors, change the size & style
of your fonts.
Do not use the default link colors from now until the end of the semester.
3) Prepare a brief (less than 5 min.) presentation
about your self and your art work. Please include images of your work.
What are you studying? Why are you studying it? What else do you do for fun?
What experience do you have with Interactive Media, Flash, ActionScript, and or web design?
What do you want to learn this semester?
@charset "UTF-8";
/* CSS Document */
/*
this is a comment
*/
body{
background-color:#000000;
color:#CCCCCC;
font-family: Taco Box, Helvetica, Arial, sans-serif;
font-size:12px;
line-height: 1.5em;
}
img{
padding:1px;
border:2px solid #CCC;
}
h1{color:red;background-color:#FFF;text-align:center;font-family:"Arial Black", Gadget, sans-serif;font-size:24px;}
h2{color:#F00; font-family:"Arial Black", Gadget, sans-serif; font-size:18px;}
h3{color:#F00; font-family:"Arial Black", Gadget, sans-serif;}
p{
background-color:#FFF;
padding: 2em;
color:#999;
width:500px;
}
a:link{color:#FFF; font-weight:bold; text-decoration: underline;}
a:visited{color:#FFF; font-weight:bold; text-decoration: underline;}
a:active {text-decoration: underline; font-weight:bold; color: #000;}
a:hover{color:#F00; background-color: #000; text-decoration: none;}
ul{
text-align:center;
list-style:circle;
width:10em;
}
li{
background-color:#FF0000;
padding: 1em;
/* display: inline; */
}