What is HTML?
HTML stands for hypertext markup language.
Is the standard markup language.
It is used to create and structure the content of webpage.
the current version of HTML we use nowadays is HTML5.
HTML uses browser to display the output.
Here the browser act like a traditional compiler to show the output.
HTML file contains meta data about that page.
meta data is nothing but data about the data.
-
In HTML file meta data is placed inside the
element.
What is Markup Language?
A markup language is used to annotate the document with the help of tags to structure, format, and display the content of the webpage.
Why Markup language?
To define structure, layout, and format of the text and data placed inside the tags.
Here tags mark up the text with its format.
When Markup language?
Whenever we need to design the text or data of documents then we need to go with markup language to define elements like headings, links, and paragraphs for interpretation by computers or browsers.
What is Element?
Element in HTML is nothing but any data which placed inside the paired tag is known as Element.
Type of CSS
There are three main ways to use CSS in Webpage, each serves a different purpose based on how many pages you need to style.
- Inline CSS: CSS written inside the tag within the HTML file.
- Internal CSS: CSS written inside the element within the section of your HTML document.
- External CSS: CSS written in separate .CSS file and it is linked to our HTML file inside section.
Difference between tags and elements
HTML tags are markup commands like
that tell browser how to display the contents, while elements are the complete unit consisting of start tag, content, and the end tag.



Top comments (1)
Well done! ****