Photo by Jackson Sophat on Unsplash
HTML Basics :- All you need to get Started.
The Heading Tag | Know the basics to get started with the web Development.
HTML OR Hyper Text Markup Language is the language in which our w̶h̶o̶l̶e̶ ̶w̶o̶r̶l̶d̶ is designed or whole Digital World for that matter.
Understanding The Basics :
1. The Heading Tag
The Heading You See in websites are made mostly using this <h1>Heading</h1> tag
Let's see this using an Example ->
So here a blogging site by my mentor Hitesh Choudhary, all the content from I’m Hitesh Choudhary, Teacher by ♥️ and programmer by profession. is created using the Heading tag or more specifically h1 tag.
you can see that by using the inspect option present in your browser.
HOW ? Let me show you :
Go to any of the website that you like, here I'm going to https://hiteshchoudhary.com , place your cursor over the content you want to inspect, right click your mouse go to the inspect option present at the bottom like this :
Now you are in the Inspect section, here you will know all the secrets of the website per se 😜
So now we are in the Inspect Section here we can see the that whole Heading Intro was under the h1 tag like this :
<h1>I’m Hitesh Choudhary, Teacher by ♥️ and programmer by profession.</h1>
I understand, there are lot more tags, elements, css present here that all comes later, but simply put you got the point here.
HRML has h1 to h6 HTML elements represent six levels of heading Section. h1 is the highest section level and h6 is the lowest.
<h1>HTML</h1>
<h2>Basics</h2>
<h3>All you</h3>
<h4>need to</h4>
<h5>get</h5>
<h6>Started</h6>
Results :-
HTML
: Basics
All you
need to
get
Started.
That's it for the h tag, next we will see what are the other elements, tags like p , br , span , ul , li & tons of other fun stuffs.
See you next time
Till then keep exploring the Anatomy of The Digital World.