±«Óătv

Developing an interactive multimedia website

Your Controlled Assessment documentation should show evidence of how you created your website solution. It is important to produce annotated evidence that show how your website was created using the following elements:

Internal hyperlink (text)

Example (in browser)

Example of how an external hyperlink will look in a web browser.

Example (annotated code)

<p>For a full range of subjects, visit the 
<a href="/education" title="±«Óătv Bitesize - ±«Óătv">
±«Óătv Bitesize home page</a></p>

Internal hyperlink (image)

Example (in browser)

An image used as a hyperlink to go to a website homepage

Example (annotated code)

<a href="home.htm">
<img src="home.gif" alt="home button" 
style="width:42px;height:42px;border:0;">
</a>

This code links the home image to the home page. It provides alternative text for browsers and sets the width and height of the image.

External hyperlink (text)

Example (in browser)

Example of an external hyperlink as it displays in a web browser.

Example (annotated code)

<p>Visit the 
<a href="/">±«Óătv home page</a>
</p>

External hyperlink (image)

Example (in browser)

±«Óătv logo used as a hyperlink

Example (annotated code)

<a href="">
<img src="http://static.bbci.co.uk/img/bbc-blocks-dark.png" 
alt="±«Óătv logo" style="width:42px;height:42px;border:0">
</a>

This code links an image of the '±«Óătv Blocks' logo to the ±«Óătv home page. Alt text has been provided and the size of the image has been set.