Curriculum
Course: HTML Basic
Login

Curriculum

HTML Basic

HTML Introduction

0/1

HTML Editors

0/1

HTML Attributes

0/1

HTML Paragraphs

0/1

HTML Formatting

0/1

HTML Comments

0/1

HTML Favicon

0/1

HTML Page Title

0/1

HTML Iframes

0/1

HTML Java Script

0/1

HTML File Paths

0/1

HTML Symbols

0/1
Text lesson

HTML Elements

HTML Elements

The HTML element encompasses all content between the start tag and the end tag.

<tagname>Content goes here…</tagname>

Examples of some HTML elements:

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

Start tag

Element content

End tag

<h1>

 First Heading

</h1>

<p>

  first paragraph.

</p>

<br>

none

none

Note: Certain HTML elements, such as the <br> element, lack content and are termed empty elements. They do not require an end tag.