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

Topic 2

The document provides an overview of HTML elements, including start and end tags, headings, paragraphs, body elements, and empty elements. It explains the concept of nested HTML elements and provides examples of their usage. Additionally, it includes a performance task for creating a simple webpage using specified HTML elements and outlines evaluation criteria for the task.
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 views4 pages

Topic 2

The document provides an overview of HTML elements, including start and end tags, headings, paragraphs, body elements, and empty elements. It explains the concept of nested HTML elements and provides examples of their usage. Additionally, it includes a performance task for creating a simple webpage using specified HTML elements and outlines evaluation criteria for the task.
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

Topic 2.

HTML Elements
 Start tag and End tag
 Heading Element
 Paragraph Element
 Body Element
 Empty Element
 Nested HTML Element
Performance Tasks:
2.1 Creating Web Page Using HTML Elements

HTML Elements
An HTML element usually consists of a start tag and end tag, with the content inserted in between:

<tagname> Content goes here... </tagname>


The HTML element is everything from the start tag to the end tag:

<p>My first paragraph.</p>

Start Tag Element Content End Tag


<h1> My First Heading </h1>
<p> My first paragraph. </p>
<br>

HTML elements with no content are called empty elements. Empty elements do not have an end tag, such as the
<br> element (which indicates a line break).

Nested HTML Elements


HTML elements can be nested (elements can contain elements). All HTML documents consist of nested HTML
elements.

This example contains four HTML elements:


<!DOCTYPE html>
<html>
<body>

<h1>My First Heading</h1>


<p>My first paragraph.</p>

</body>
</html>

1|Page-JACC
Example Explained
The <html> element defines the whole document.
It has a start tag <html> and an end tag </html>.
The element content is another HTML element (the <body> element).
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

The <body> element defines the document body.


It has a start tag <body> and an end tag </body>.
The element content is two other HTML elements (<h1> and <p>).

<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>

The <h1> element defines a heading.


It has a start tag <h1> and an end tag </h1>.
The element content is: My First Heading.
<h1>My First Heading</h1>

The <p> element defines a paragraph.


It has a start tag <p> and an end tag </p>.
The element content is: My first paragraph.
<p>My first paragraph.</p>

Do Not Forget the End Tag


Some HTML elements will display correctly, even if you forget the end tag:

Example
<html>
<body>
<p>This is a paragraph
<p>This is a paragraph
</body>
</html>

Empty HTML Elements


HTML elements with no content are called empty elements.

<br> is an empty element without a closing tag (the <br> tag defines a line break).

2|Page-JACC
Empty elements can be "closed" in the opening tag like this: <br />.
HTML5 does not require empty elements to be closed. But if you want stricter validation, or if you need to make
your document readable by XML parsers, you must close all HTML elements properly.

Use Lowercase Tags


HTML tags are not case sensitive: <P> means the same as <p>.
The HTML5 standard does not require lowercase tags, but W3C recommends lowercase in HTML and demands
lowercase for stricter document types like XHTML.

Activity 2:
1. 0 Creating Simple Webpage Using HTML Elements
Create a simple webpage that displays the following:
1. An essay that talks about your personal life.
a. It must have 4 paragraphs; each paragraph must have 5 sentences.
2. The page title must be “MY FIRST WEB PAGE”.
3. The first heading is “My Autobiography”
4. Your simple webpage must apply the following elements:
a. body element
b. heading element
c. paragraph element
d. <br> element

SATISFACTORILY PARTIALLY UNSATISFACTORILY


CATEGORY
( 5) SATISFACTORILY (3) (1)
Using HTML Codes Used all HTML codes as Skipped one or two Missed a few more
required. HTML codes. HTML codes.
Content The HTML displayed One or two lines of the Few more lines do not
correctly in the web HTML document does display correctly; some
browser. not display properly in areas of the page are
the web browser. distorted in the web
browser.
Following directions Followed all directions Missed one or two Missed three or more
accordingly. directions. directions.

Use of HTML Elements Used all the required Few of the required Missed three or more
elements correctly. elements were used required elements.
correctly.

3|Page-JACC
4|Page-JACC

You might also like