Ad Code

HTML Tag

Advertisements
HTML Tag

                    HTML is a markup language, which means that it is written with codes that can be read by a person, without needing to be compiled. In other words, the text on a web page is “marked up” with these codes to tell the browser how to display the text.
And these markup tags are the HTML tags themselves.

When we write HTML, We are writing HTML tags. These are made up of:
  • A less-than sign  <
  • A word or character
  • Optional space followed by:
  • Any number of optional HTML attributes in the form of a name="value" pair
  • And finally a greater-than sign  >
Example:

<p>
<html>
<small>
------------------------------------------------
------------------------------------------------
-----------------------------------------------
<a href="URL">
<img src="URL">
<div id="ID">

Where:-

Are all HTML tags without attributes.  
<p> defines a paragraph. 
<html> defines the page as HTML. 
And <small> defines small print, such as in a legal document.


Download Link
Advertisements

Post a Comment

0 Comments