UNDERSTANDING THE FUNCTIONALITY OF HTML
Learning objectives:
By the end of this topic you should be able to understand how
HTML is used to structure a web page
How to use semantic markup
How to include images,tables,forms and media in a web page
HTML ELEMENT STRUCTURE
This is an example of a simple HTML document.
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>My first web page</title>
</head>
<body>
<h1>Web page heading</h1>
<p> Welcome to my web page </p>
<img src="[Link]" width="200" height="auto" alt="A dog">
<p> <a href="[Link]">here</a> to visit my other page </p>
</body>
</html>