Music

Author

what is HTML tags, Lesson-2





What are HTML tags?


  1.  HTML tags are used to mark-up HTML elements 
  2.  HTML tags are surrounded by the two characters < and > 
  3.  The surrounding characters are called angle brackets 
  4. HTML tags normally come in pairs like <b> and </b> 
  5. The first tag in a pair is the start tag, the second tag is the end tag 
  6.  The text between the start and end tags is the element content 
  7. HTML tags are not case sensitive, <b> means the same as <B> 


  1.    <b>: Makes the text bold.  
  2.  <big>: Makes the text usually one size bigger than what's around it.  
  3.  <i>: Makes text italic. 

Physical tags were invented to add style to HTML pages because style sheets were not around, though the original intention of HTML was to not have physical tags. Rather than use physical tags to style your HTML pages, you should use style sheets


HTML Elements 
  Remember the HTML example from the previous page 


 <html> 
 <head> 
 <title> My first web page </title> 
 </head> 
 <body>  
  This is my first Home page. <b> this text is bold</b>  
 </body> 
 </html> 



This is an HTML element: 
<b>This text is bold</b>  
The HTML element begins with a start tag: <b>
The content of the HTML element is: This text is bold 
The HTML element ends with an end tag: </b>
The purpose of the <b> tag is to define an HTML element that should be displayed as bold. 



This is also an HTML element: 
<body> 
 This is my first homepage. <b>This text is bold</b>  
</body>


This HTML element starts with the start tag <body>, and ends with the end tag </body>. The purpose of the <body> tag is to define the HTML element that contains the body of the HTML document. 

Nested Tags  
You may have noticed in the example above, the <body> tag also contains other tags, like the <b> tab. When you enclose an element in with multiple tags, the last tag opened should be the first tag closed. For example: 

<p><b><em>This is NOT the proper way to close nested tags.</p></em></b>
 
<p><b><em>This is the proper way to close nested tags. </em></b></p>




Tag Attributes 

Tags can have attributes. Attributes can provide additional information about the HTML elements on your page. The <tag> tells the browser to do something, while the attribute tells the browser how to do it. For instance, if we add the bgcolor attribute, we can tell the browser that the background color of your page should be blue, like this: <body bgcolor="blue">.  
This tag defines an HTML table: <table>. With an added border attribute, you can tell the browser that the table should have no borders: <table border="0">. Attributes always come in name/value pairs like this: name="value". Attributes are always added to the start tag of an HTML element and the value is surrounded by quotes. 


what is HTML tags, Lesson-2  what is HTML tags,  Lesson-2 Reviewed by Raj Tech Info on April 17, 2019 Rating: 5

No comments:

Powered by Blogger.