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>



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).


Example

<html>
<body>

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

</body>
</html>
Try it Yourself »


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>
Try it Yourself »


Previous
Next Post »
Copyright @ 2024 AB Wighio All Right Reserved. Powered by Blogger.