Please don't worry if you cannot know about the any tag which was used in the previous tutorial.Here i teach you about all the tags so don't worry now start learning,in the previous lecture you see <p> tag here p means Paragraph, and <b> tag b is used for bold data.
HTML Heading
HTML heading tag is start with <h1> to <h6>.Basically <h1>,<h2>,<h3>.....<h6> that's all are starting tag and now here is the ending tag</h1>,</h2>,</h3>......</h6>.Basically <h1> to <h6> tags are used for sizing the data or content.A single page contain hundred and thousand of elements,but every page must contain four important elements that's are .... HTML,Head,Title,and Body.Head and Title is important but at the start level means we are now at the starting point that's why i can not tell you what's the logic ,is i am saying head and title is very important but why i am not using the head and title in the example and results ,in the next lectures i teach you what's the matter .When we start JavaScript i tells you why we were not using these tags.we start the basic tutorials without head and title tags.
Example:
Now save the file with index.html or (anything).html
Your Result:
that's all if you find any problem freely contact us.
HTML Paragraphs
html paragraph is also start with<p> and closing with </p>.Here p stand for paragraph and the tag <p> is used for arranging paragraph and lines that's a very important for writing contents.There are many tags work behind the scene and invisible to visitors but to make the web pages beautiful that plays very important role .I also describe about the html elements, basically html elements consist of three parts,
start tag,content,and end tag.
1.<p> start tag or open tag.
2.content element-Content Here.
3.</p> end tag or closing tag.
<p> Here is the content </p>
now I want to explain here the basic concept of <p> paragraph with the example and their result in browser,now see
Example:
Now save the file with the index.html or (anything).html in the desktop or any other folder.
open the file and see what the result in browser,now see
Your Result:
that's all, I hope you will find good here.in the next tutorial i teach you about html tags.Thanks.
HTML Heading
HTML heading tag is start with <h1> to <h6>.Basically <h1>,<h2>,<h3>.....<h6> that's all are starting tag and now here is the ending tag</h1>,</h2>,</h3>......</h6>.Basically <h1> to <h6> tags are used for sizing the data or content.A single page contain hundred and thousand of elements,but every page must contain four important elements that's are .... HTML,Head,Title,and Body.Head and Title is important but at the start level means we are now at the starting point that's why i can not tell you what's the logic ,is i am saying head and title is very important but why i am not using the head and title in the example and results ,in the next lectures i teach you what's the matter .When we start JavaScript i tells you why we were not using these tags.we start the basic tutorials without head and title tags.
Example:
<html> <body> <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> </body> </html>
Now save the file with index.html or (anything).html
Your Result:
HTML Paragraphs
html paragraph is also start with<p> and closing with </p>.Here p stand for paragraph and the tag <p> is used for arranging paragraph and lines that's a very important for writing contents.There are many tags work behind the scene and invisible to visitors but to make the web pages beautiful that plays very important role .I also describe about the html elements, basically html elements consist of three parts,
start tag,content,and end tag.
1.<p> start tag or open tag.
2.content element-Content Here.
3.</p> end tag or closing tag.
<p> Here is the content </p>
now I want to explain here the basic concept of <p> paragraph with the example and their result in browser,now see
Example:
<html> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html>
Now save the file with the index.html or (anything).html in the desktop or any other folder.
open the file and see what the result in browser,now see
Your Result:
that's all, I hope you will find good here.in the next tutorial i teach you about html tags.Thanks.
No comments:
Post a Comment