+ All Categories
Home > Technology > Images as links

Images as links

Date post: 11-Apr-2017
Category:
Upload: mylissa-hoover
View: 145 times
Download: 0 times
Share this document with a friend
6
Images as Links Mylissa Hoover
Transcript
Page 1: Images as links

Images as LinksMylissa Hoover

Page 2: Images as links

The What• An image as a link is basically what it sounds like• It is a clickable image on a website that has a link to another webpage• Images can be linked to any url or an enlarged version of the image

Page 3: Images as links

The Why• Using an image as a link is a popular way to create concise site content • It holds the attention of the user• Having an image makes a user more likely to click on the link• Linking an image is a useful way to make a clean looking web page that still

has plenty of information for the user• More content can be stored on one page without cluttering the layout

Page 4: Images as links

The How

Code them together

Find your link

Find your image• Creating an image that is also a link

is fairly simple.• You need the image source, as well

as the link.• In HTML5 you place the image

source within the link tags.

Page 5: Images as links

The Code• You first create your link tags and the place the image source within them, like

so:<a href=“www.byui.edu”><img src=http://www2.byui.edu/imageLibrary/HomePage/060720CampusAerial_6209.jpg></a>

Page 6: Images as links

The Example• Below is the working image as a link based on the code from the previous

slide:


Recommended