Monday, 12 September 2016

Blog Task 20

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

<a href="http://www.w3schools.com">Visit the HTML programming tutorial.</a>

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

<a href="html_images.asp">HTML Images Hosted on the main site</a>

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

<a href="html_images.asp" target="_blank">HTML Images (opens a new window)</a>

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

<a href="html_images.asp" target="_blank" style="text-decoration:none;">HTML Images (without the underline)</a>

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

<a href="http://www.w3schools.com">
<img src="smiley.gif" alt="HTML tutorial" style="width:42px;height:42px;border:0"></a>
</body>
</html>

No comments:

Post a Comment