Introduction of HTML Elements

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:-
  1. <h1> this is heading tag hare write heading content</h1>
  2. <p> ths is paragraph tag hare write paragraph.</p>
  3. <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>
Hare how much tag are include?
Ans: 4 tag(Html,body,h1,p).
Each tag have two elements-
  1. <html>,</html>
  2. <body></body>
  3. <h1></h1>
  4. <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.
   


Post a Comment

Previous Post Next Post