CIT CS Workshop: June 2001Lab 3 |
Computer Science Department |
Lab Assignment 3
mv myClipArt.gif public_html/myClipArt.gif
(for move)
mv myClipArt.gif public_html/.
where the dot (.) stands for
"use the same filename"
mv baseball baseball.html
and the file is renamed
<BODY BGCOLOR=GREEN>
<FONT COLOR=DARKRED> the dark red text </FONT>
...
</BODY>
<BODY BGCOLOR=#00FF00> for a green background
<FONT COLOR=#FF0000> some red text </FONT>
<FONT COLOR=#0000FF> some blue text </FONT>
...
</BODY>
This is called RGB notation for red, green, and blue
The pound sign (#) tells HTML
that this is an RGB-specified, not named, color
The first two hexadecimal digits
represent the intensity value of RED
where 00 means none
and FF means full strength
The next two hexadecimal digits
represent the intensity value of GREEN
The last two hexadecimal digits
represent the intensity value of BLUE
For instance, #FF7F00 is dusty rose
while #9F9F5F is khaki
and #FF6EC7 is neon pink
Note: You can have more than one Telnet window open at the same time