1. HTML(HyperTextMarkupLanguage): 🤓

👉HTML is not a programming language,instead it is markup language which tells browser how to structure web pages.

👉It is the skeleton of website 👉Tags we use are case insensitive but for best practice,it should be of lowercase.

Anatomy of HTML element:

👉Element

👉Opening and closing tags

👉Content

<p>**I am Samyak Shah**</p>

Above example is considered as complete element in which note down those opening tags and closing tags.Content is what in between the tag(The bold text)

2. HTML file head vs body: 🤓

👉The head of an HTML document is the part that is not displayed in the web browser when the page is loaded. 👉It contains majorly titles,links to css,meta data

                                                          VS

👉Body of HTML document is the part which is displayed in the web browser when page is loaded

3.Semantic HTML: 🤓

👉Tags which make sense to developers and users is what Semantic HTML is.

👉An example of semantic element layout by w3schools

This first block of code uses semantic elements: