The HTML Anchor Tag Coords Attribute is used with the HTML Anchor Tag Shape Attribute to define or specify the shape, size and the location or placement of the link in an <object> or <img> element. By default, the top left corner coordinates are taken as 0,0. Syntax of HTML Anchor Tag Coords Attribute < […]
How To Comment In HTML
Well, how to comment in HTML is a simple question with a simpler answer. As in any other language we can add comments in HTML code. HTML provides comment tag (<!– ..- ->) for commenting a part of code. The HTML comment tag makes sure that the comment tag and the part of the code […]
DOCTYPE in HTML
DOCTYPE (<!DOCTYPE) in HTML is basically an instruction to the browser regarding the version of HTML used on the page. DOCTYPE in HTML is not a tag. The <!DOCTYPE> must be the first thing on any HTML page so that the browser immediately understands how to render the HTML page. The <!DOCTYPE> must be placed […]
HTML Anchor Tag
HTML Anchor Tag (<a>) is used to create or provide a link to a resource or to another web page or to a different location on the same web page. The HTML Anchor Tag is written as <a>. The most common use of the HTML Anchor Tag is to provide a Hyperlink to another webpage […]
HTML Abbr Tag
HTML Abbr Tag (<abbr>) is used to indicate the abbreviation or acronym e.g. “WHO”, or “WWF”. In other words we can say that whenever we want to give acronym in HTML we use the Abbr Tag. My marking the abbreviations using the HTML Abbr Tag we give useful information to internet browsers, translation systems, spell […]