0% found this document useful (0 votes)
2 views1 page

HTML Basics: Structuring Web Pages

This document outlines the functionality of HTML, focusing on its role in structuring web pages and using semantic markup. It includes examples of how to incorporate images, tables, forms, and media into a web page. A simple HTML document is provided to illustrate these concepts.

Uploaded by

Nelly Chantal
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

HTML Basics: Structuring Web Pages

This document outlines the functionality of HTML, focusing on its role in structuring web pages and using semantic markup. It includes examples of how to incorporate images, tables, forms, and media into a web page. A simple HTML document is provided to illustrate these concepts.

Uploaded by

Nelly Chantal
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

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>

You might also like