Heyy! I'm back with an interesting Coding Language which is HTML! Let's first have a brief view of why we shall know HTMLðŸŽ... Hypertext Markup Language is the standard markup language for documents designed to be displayed in a web browser. It can be assisted by technologies such as Cascading Style Sheets and scripting languages such as JavaScript. You can read more about HTML @Wikipedia What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc. That was a pretty mouthful of Theory!😉 Let's Jump to the structure of BASIC HTML... Example : < !DOCTYPE html > < html > < head > < title > Page Title < /title ...