HTML stands for Markup Language. It is widely used in creating websites. You can’t work without HTML in any website. Learning HTML is important for any type of web programmer for excel in their career. This HTML tutorial is for Beginners and Advanced learners.
I will teach you how to work in HTML. How you can excel in the carrier of Frontend development. You can see the roadmap of Frontend Web Development HTML is the part of Frontend development in web technologies.
Now it’s very easy to learn HTML with the help of latest programing tools like VSCode. Before going to learn HTML it is important to understand the layouts of a website. You may have heard the name of
Header, Footer, sidebar, Menus, Sliders and few tags for presenting the content on the web page i.e. H1-H6, P, header, captions, videos, audios, chat or some call action areas etc. I will discuss each and everything in detail. I will also publish a video for doing all the things practically.
My blog name is Step4all and you may search on YouTube step4all. You can join my Step4all channels here.
What you need to start working on HTML?
You must have a computer System? Code2 Due + with 2 or 4 GB RAM you can start working on HTML
You need an editor to start working I will recommend you VSCode or Sublime Text Editor. I will tell you few shortcuts for writing speedy HTML.
You need a browser I will recommend you google chrome. You can download google chrome from here.
Let’s Start
Please look at this picture with the name the sections of the website.
Header is the part of a website which is commonly used on each page of a website.
Footer is also the used on each page for displaying some common content like Copyrights Contact and some common links like Products/Services and Newsletter Subscription.
Basic and Most Common Structure for starting HTML. Strat type html:5 the following line of code automatically will be generated.
<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta http-equiv=”X-UA-Compatible” content=”IE=edge”>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Document</title>
</head>
<body>
</body>
</html>
Here are the list of few tags:
<h1>H1 Heading Title – Step4all.com</h1>
<h2>H2 Heading Title – Step4all.com</h2>
<h3>H2 Heading Title – Step4all.com</h3>
<h4>H2 Heading Title – Step4all.com</h4>
<h5>H2 Heading Title – Step4all.com</h5>
<h6>H2 Heading Title – Step4all.com</h6>
<p>Paragraph Tags for writing content</p>
<p>Paragraph Tags for writing content</p>
<p>Paragraph Tags for writing content</p>
<b>Bold Text</b>
<i>Italic Text</i>
<u>Underline Text</u>
Ordder List
<ul>
<li>List One</li>
<li>List Two</li>
<li>List Three</li>
<li>List Four</li>
</ul>
<ol>
<li>Orderd List</li>
<li>Orderd List</li>
<li>Orderd List</li>
</ol>