HTML Elements
Element Syntax In HTML :
Empty HTML Elements :
HTML things with no material are named clear elements.
<br> is an empty aspect without a final tag (the <br> tag identifies a line break).
Document Example Of HTML :
<!DOCTYPE html>
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>
<html>
<body>
<p>This is my first paragraph.</p>
</body>
</html>
The <p> factor becomes a paragraph in the HTML document.
The factor has a begin label <p> and a conclusion label</p>.
The factor content is: This is my first paragraph.
The factor has a begin label <p> and a conclusion label</p>.
The factor content is: This is my first paragraph.
The element <body>describes the body of the HTML document.
The element has a begin <body> end finish with </dody>.
The element content is yet another HTML element .
The element has a begin <body> end finish with </dody>.
The element content is yet another HTML element .