injob

You are welcome to Tecpins, it is free tutorials for people who want to learn about Html Tutorial,Android Tutorials,PHP Tutorials,Java Tutorials and Css Tutorials.

Post Top Ad

728-90
Responsive Ads Here

HTML Elements

What is HTML Elements?

 An HTML element is an individual component of an HTML document or web page. HTML is composed of a tree of HTML nodes, such as text nodes.

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

Start Tag "<>"
End Tag "</>"

Example: 

Paragraph.

Paragraph Start Tag is =  "<p>
Paragraph End Tag is =  "</p>


<!DOCTYPE html>
<html>
<body>

<h1>Heading</h1>
<p>Paragraph.</p>

</body>
</html>