Tuesday, 26 July 2016

Blog Task 13

Exercise 1
<!DOCTYPE html>
<html>
<body>

<p title="About W3Schools">W3Schools is a web developer's site that's useful for learning HTML and other languages</p>

</body>

</html>
<!-- I extended the paragraph to include that the site is helpful for learning HTML -->

Exercise 2
<!DOCTYPE html>
<html>
<body>

<img src="w3schools.jpg" alt="w3schoolslogo" width="250" height="400">

</body>
</html>
<!-- I added the alt attribute with the name of the image -->

Exercise 3
<!DOCTYPE html>
<html>
<body>

<a href="http://www.w3schools.com"> Link to the W3Schools webpage </a>

</body>
</html>
<!-- I changed the text to say where the link goes -->

Exercise 4
<!DOCTYPE html>
<html>
<body>

<a href="http://www.wwf.org.uk">WWF Homepage</a>

</body>
</html>
<!-- I changed the text to say where the link goes again -->

Exercise 5
<!DOCTYPE html>
<html>
<body>

<img src="w3schools.jpg" alt="w3schools.com" width="135" height="50">

</body>
</html>
<!-- I changed the src attribute to have the correct image file -->

No comments:

Post a Comment