This File here, that is the README.md -> .md represents that this is a Markdown Language. And it has similar syntaxs as HTML
HTML is basically used to create a WebPage.
Everything in HTML is a tag "<>" is used as TAG
Tags are of two types,
1. Paired Tag -> it contains the Opening Tag and Closing Tag.
2. Un-paired / Single Tag -> it doesn't have the closing Tag. It's a independent tag.
Each tag & Data enclosed in between them is addressed as an Element.
We can categorize/identify the tags in two ways
1. By Class
2. By Id
This categorization gives flexibility to customize the tags. And in the later purposes we also use this fetch the content of any tag (in java script.)
Creating a WebPage comprises of a lot of things,
- Arranging the elements - meaning, which element takes which place in the page
- Styling the element - what size and color the element needs to be in
- Adding the behaviour for each element - what happens when particular element is being clicked.
Every HTML file contains the extension as .html
In general, while coding for any WebApplication, the first page of it would be named as
index.html
As we progress in the process of building a webapplication, it would need more webpages, and these can be developed/coded separately and can be connected where it's needed.
Please look into the different html files to dwell deep into the HTML.