Posts

HTML is short for Hyper Text Markup Language which is standard markup language for creating  web pages (electronic documents on world wide web). It was f irst developed by Tim Berners-Lee in 1990.  HTML pages are build through HTML elements and the HTML elements are represented by tags.  HTML Tags : HTML tags are building component of HTML page. Tags  are used to mark up the start of an HTML element. Tags are enclosed with angular  brackets such as < b > <  /b > < img > etc. Generally they come in pair. < tag >; Content here... < /tag > is known as opening tag and the angular bracket with backslash  is known as closing tag. The content withing the opening and the closing tag will be executed according to the tagname by the browser. Lets begin with a simple code : < DOCTYPE html > < html > < head > < title > HTML < /title > < head > < body > < p >Welcome to HTML Tutorials by < b
Recent posts