Building a solution - CCEADeveloping an interactive multimedia website

Once you have designed your solution, you must code your Controlled Assessment website using Hypertext Markup Language (HTML).

Part ofDigital Technology (CCEA)Digital authoring practice (multimedia)

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="BBC Bitesize - Home">
BBC 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="https://www.bbc.co.uk/">BBC home page</a>
</p>

External hyperlink (image)

Example (in browser)

BBC logo used as a hyperlink

Example (annotated code)

<a href="https://www.bbc.co.uk">
<img src="http://static.bbci.co.uk/img/bbc-blocks-dark.png" alt="BBC logo" style="width:42px;height:42px;border:0">
</a>

This code links an image of the 'BBC Blocks' logo to the BBC home page. Alt text has been provided and the size of the image has been set.