What is HTML Elements ?
HTML elements are two tag Starting <start tag> and </end tag>.All content write hare with particular keyword tag.
A simple example hare:-
- <h1> this is heading tag hare write heading content</h1>
- <p> ths is paragraph tag hare write paragraph.</p>
- <strong> Hare write strong content</strong>
A simple HTML Example and describe important about Html Elements:-
<!DOCTYPE html>
<html>
<body>
<h1>Ths is Heading tag</h1>
<p>This is paragraph Tag </p>
</body>
</html>
<body>
<h1>Ths is Heading tag</h1>
<p>This is paragraph Tag </p>
</body>
</html>
Hare how much tag are include?
Ans: 4 tag(Html,body,h1,p).
Each tag have two elements-
- <html>,</html>
- <body></body>
- <h1></h1>
- <p></p>
Remember all element tag are have ending tag with out ending tag declaration cant understand brwser what is content type like that is heading or paragraph.
Tags:
Tutorial