in this lecture we use tags just for understand basic of HTML.
HTML Document
all Document of HTML start with document type <!DOCTYPE html>.HTML Document start with its name <html> and </html>. remember that all opening tag must have its closing tag. For Example <html> this is opening tag and closing tag is same as opening tag but we use / sign to close any tag </html>. so tag have no closing tags. For Example <br> have no closing tag. The visible part of HTML Document is in <body> </body> tag.
For Example:-
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body></html>
HTML Heading Tags:-
HTML Heading tags are define with <h1> to <h6>
<h1> is tha largest tag and <h6> is the smallest Heading tag.
You can see This Example in the Image blow.
HTML Paragraphs:-
HTML paragraphs are Defines with <p> </p> tag
For Example:-
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<p>This is another paragraph.</p>
You can see OutPut Of this Example in Image
IF you have any question about this lecture you can comment blow. feel free to contact me.
you can also Visit my YouTube channel by clicking on this Link YouTube Channel.
0 comments:
Post a Comment
Thanks