HTML TAGS?

admin
By -
0

What is HTML TAGS?






Html tags are type of elements that we  can use to describe property and value inside the html documents and its help us to define value property and structuring document s and web pages components
which are the building blocks of a web page. These tags inform the browser how to display the information on the page, such as headings, lists, images, and links.
elements on a webpage through the use of tags and attributes. HTML is a fundamental skill for anyone looking to get into web development because it is the building block for creating websites.

There are two type of HTML Tags or elements

1.Inline  2.Block

Inline Elements not occupy whole space its define margin on the value of content
only cover the size of contents or value. Best use of inline elements when we using svg or any icon with other elements like button or links.

Example of Inline Tags

  1. <span></span>
  2. <a></a>
  3. <i></i>
  4. <label></label>
  5. <br></br>
  6. <button></button>  etc...


Block Level Elements are the elements that cover whole space of its place and its always using new line .The Block level elements is like Stack or Piller.
Its has own property of margin and not define by contents or values.

Example of Block Level Elements:
  1. <footer></footer>
  2. <form></form>
  3. <nav></nav>
  4. <header></header>
  5. <p></p>
  6. <table></table>
etc..

Basic HTML Document TAGS looks Like This


<html>
<head>

<style>
<!--Internal CSS-->
</style>


</head>

<body>
<p>HTML BASIC DOCUMENTS!!</p>
</body>

<footer>


</footer>


</html>

Post a Comment

0Comments

Put Your Thought or Query Here

Post a Comment (0)