Introduction Of Tag: Tag is simply used as an Html element or code by which you can define what you want from your codes to deliver in your webpages. These are simply be written within the angle braces like {}.
for example: if somebody wants to write text in bold, he can simply use the <b> some text </b>. whereas <b></b> is the tag which is used to make the text in bold.
Basic Html tags are easily available on various sites but the important ones that are needed is :
Category-1 tags are essential tags. That means these tags are used in any HTML WebPage. Without use of these tags no webpage creation is possible. So, remember these four basic tags are for lifetime, if you want to be an Html Designer.
Category-2 tags are although essential tags but are used whenever required. The very Important point regarding Category-2 tags is It can only be used within the body tag. The Description of the category tags followed in my next blog.
The Basic Structure of a web page is:
for example: if somebody wants to write text in bold, he can simply use the <b> some text </b>. whereas <b></b> is the tag which is used to make the text in bold.
Basic Html tags are easily available on various sites but the important ones that are needed is :
CATEGORY - 1
Category-1 tags are essential tags. That means these tags are used in any HTML WebPage. Without use of these tags no webpage creation is possible. So, remember these four basic tags are for lifetime, if you want to be an Html Designer.
1. <html></html>
2. <title></title>
3. <head></head>
4. <body></body
CATEGORY - 2
Category-2 tags are although essential tags but are used whenever required. The very Important point regarding Category-2 tags is It can only be used within the body tag. The Description of the category tags followed in my next blog.
The Basic Structure of a web page is:
<html>
<title>my webpage</title>
<head> This is my webpage </head>
<body>
anything written with body tag is displayed in your webpage. so, this tag has great importance. All the Category-2 tags are used within the body tag like..
<p> paragraph could be written in p tag. </p>
</body>
</html>
Nice And Simple Explanation
ReplyDeletecontinue Brother ...