0% found this document useful (0 votes)
7 views4 pages

HTML Revision

Uploaded by

Ashraf Masso
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)
7 views4 pages

HTML Revision

Uploaded by

Ashraf Masso
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
You are on page 1/ 4

Revision worksheet / Grade 5

Student Book
Study the terms in green boxes pages (55, 56,67,82)
The student doesn't have to memorize the key terms, just understand them.

HTML stands for Hypertext Markup Language, and it is


the most widely used language to write Web Pages.
What is an HTML Element?
An HTML element is defined by a start tag, some
content, and an end tag
Anatomy of an HTML element:

The main parts of our element are as follows:


1.The opening tag: This consists of the name of the
element, wrapped in opening and closing angle
brackets. This states where the element begins or
starts to take effect.

2.The closing tag: This is the same as the opening


tag, except that it includes a forward slash before
the element name. This states where the element
ends.
3.The content: This is the content of the element.
4.The element: The opening tag, the closing tag,
and the content together comprise the
element.

Web Browsers
The purpose of a web browser (Chrome, Edge,
Firefox, and Safari) is to read HTML documents and
display them correctly.
A browser does not display the HTML tags, but uses
them to determine how to display the document

Basic Tags
<html> </html>
Creates an HTML document
<head> </head>
Sets off the title & other info that isn't displayed
<body> </body>
Sets off the visible portion of the document
<title> </title>
Puts name of the document in the title bar.
Text Tags
<h1> </h1>
<h6> </h6>
Creates headlines -- H1=largest, H6=smallest
<b> </b>
Creates bold text.
<i> </i>
Creates italicized text.
<p> </p>
Creates a new paragraph
<br>
Inserts a line break (carriage return)
HTML lists allow web developers to group a set of
related items in lists.
An unordered list starts with the <ul> tag. Each list
item starts with the <li> tag.
The list items will be marked with bullets (small black
circles) by default.
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
Ordered HTML List
An ordered list starts with the <ol> tag. Each list item
starts with the <li> tag.
The list items will be marked with numbers by default
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol> Teacher: Ashraf Al-Masso

You might also like