HTML Elements :-An HTML element consists of a start tag and end tag, with the content fill in between: Start Tag Content End Tag <p> This is paragraph. </p> <h1> This is heading. </h1> <div> ...
Tuesday, 20 February 2018
Saturday, 25 November 2017

All HTML Tags | Learn HTML | HTML Tutorial | Easy HTML
HTML Tags:-TagDescription<!–…–>Defines a comment<!DOCTYPE>Defines the document type<a>Defines an anchor<abbr>Defines an abbreviation<acronym>Defines an acronym<address>Defines contact information for the author/owner of a document<applet>Deprecated. Defines an embedded applet<area />Defines an area inside an image-map<b>Defines bold text<base />Specifies the base URL/target...
Friday, 24 November 2017
What is HTML Tags | Learn HTML | HTML Tutorial | Easy HTML
HTML Tags:-HTML tags are used to mark up the start and end of an HTML element. HTML tags are surrounded by the two characters < and >.These (< and >) characters are called angle brackets. A...
Friday, 3 November 2017

HTML # 5 - HTML Versions
HTML Versions-There are many versions of HTML: 1) HTML 1.0 (1989 - 1994)-HTML 1.0 was the first release of HTML to the world. HTML 1.0 was limited in terms of styling and presentation of content. In...
Sunday, 29 October 2017
HTML # 4 - HTML Editors
Write HTML Using Notepad or TextEdit :-Web pages can be created and modified by using professional HTML editors.However, for learning HTML we recommend a simple text editor like Notepad or Notepad++(PC) or TextEdit (Mac).We believe using...

HTML # 3 - HTML History & Features
History of HTML:In the late 1980's , A physicist, Tim Berners-Lee who was a contractor at CERN, proposed a system for CERN researchers. In 1989, he wrote a memo proposing an internet based hypertext system.Tim Berners-Lee is known...
HTML # 2 - Simple HTML Document Example
HTML Example:-<!DOCTYPE html><html> <head> <title>A Simple HTML Document</title> </head> <body> <h1>My First heading</h1> <p>My First paragraph.</p> </body></html> Description of HTML Example:-DOCTYPE: It defines the document type.html : Text between html tag describes the web document.head :...
HTML # 1 - Introduction to HTML
What is HTML?HTML stands for Hyper Text Markup Language. Let's see what is Hyper Text and what is Markup Language?Hypertext: Hypertext is text which contains links to other texts (the link available on...