HTML Revision
HTML Revision
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.
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