IGCSE ICT

HTML REVISION

Place the following code inside the head tags.
<link rel="stylesheet" href="sample.css" type="text/css">

<a href="CAMBRIDGE.HTM" target="_circular"> CIE Exams </a>
Values for the target attribute:
Value Description
_blank The linked document in a new window or tab
_self Opens the linked document in the same frame as it was clicked (this is the default)
_parent Opens the linked document in the parent frame
_top Opens the linked document in the full body of the window
_framename Opens the linked document in a named frame

<IMG src="blackcat.jpg" width=200px height="100px">

<IMG src="blackcat.jpg" width="200px">

<a href="http://www.wildcats.com" target="_cats">
<IMG SRC="blackcat.jpg">
</a>

<a href="mailto:android@alphabet.com?subject=Application%20Developer"> mail me </a>

Createing an anchor START anywhere in the web page:
<a id="start">

Make the text 'Go to start' a hyperlink that will point to the anchor created in above:
<a href="#start">Go to Start</a>

Insert the video cliphorserace.mp4. Set the width of the video to 400 pixels and height to 300 pixels.
<video width="400" height="300">
<source src="horserace.mp4 type="video/mp4">
</video>

Insert video: Specifying the video controls should be displayed (play/pause buttons, etc) CONTROLS
<video width="400" height="300" controls> <source src="horserace.mp4 type=video/mp4> </video>

Insert video: Specifying the video should play automatically. AUTOPLAY
<video width="400" height="300" controls autoplay loop>
<source src="horserace.mp4 type=video/mp4>
</video>

Insert video: Specifying the video should start over again every time it is finished. LOOP
<video width="400" height="300" controls autoplay loop>
<source src="horserace.mp4 type=video/mp4>
</video>

Display an error message if the video doesn’t play.
<video width="400" height="300" controls autoplay loop>
<source src="horserace.mp4 type=video/mp4>
Your browser doesn't support this video format
</video>

Get In Touch

123 Street, New York, USA

info@ictmadesimple.com

+012 345 67890

Newsletter

Follow Us

© www.ictmadesimple.com. All Rights Reserved.