Lecture Summaries class 10

Prepared by: Anthony Larrain

These notes serve as an outline to the lecture, they are not intended to be complete. Attend class to get more details.


Quiz 1


Using Photofiltre to Edit Images

Photo Filtre is a free image editing tool for Windows. If you have a Mac, IPhoto should of come with your computer.

When editing an image make sure you duplicate it first.

Most of lab 9 will involve working with photo filtre


Making an Image Into a Hyperlink

At this point all of our hyper links have been text. To make an image into a hyper link, simply nest the img tag inside the anchor tag.

Example

<a href="http://www.yahoo.com"> <img src="yahoo.gif" width="232" height="34" alt="Yahoo link"> </a>

You would see

Yahoo link

Since it is a link a border is placed around the image.

Can use CSS to remove the border if required

img{border:0;}

After adding the style you would see

Yahoo link

The above Yahoo image is an example of a Logo, typically logo's a giffiles


Prepare For Lab