About This Article
In this article we will know "What is HTML ?". Every person in this world needs a means of earning money so that he can fulfill his own needs. Different people do different types of work like someone doing their own business, someone doing online jobs and someone working inside a company.
Whether the work is big or small, a person has to work hard in every work, only then he can earn money. In the same way, a blogger also earns money by working hard through the Internet. If you thinking you will start web design and coding first of all you should know basic of html and CSS. It's necessary to learn html and CSS. Every website has using html and CSS so we will learn here what is html and how it's works. So let's go
ABOUT HTML
HTML stands for Hyper Text Markup Language, HTML is the standard markup language for creating Web pages, HTML describes the structure of a Web page, HTML elements tell the browser how to display the content, HTML elements label pieces of content such as this is a heading, this is a paragraph, this is a link, etc.
What Is An HTML Tag?
With the help of tags, we can give a new look to our website, in that we can create a webpage using images, tables, colors etc.
Different tags work in different ways. When you view your html page through browser, then all these tags are not visible in it, only their effect is visible.
There are thousands of tags in HTML which we use to create a website. Let me tell you about some of those special tags, which are very important to use for making a website. Before starting writing coding in HTML, a comment is written so that the author knows what that html page has been made for.
It is not mandatory to write a comment, it depends on you whether you want to write a comment for your html document or not.
<!”….”> is written inside it, you will not see this comment in web browser.
First of all when you start coding on editor for coding you have start with
<!doctype html> <html lang="en"> Language you can choose differents.
closing time you have to close like this
</html>
The most important tag after writing a comment is the header tag, Except the comment tag, all the other html tags have a start tag and an end tag. like
<head>…………………</head>
The title tag is written inside the header tag which shows the title of our html page like,
<title> It's My First Website </title>
basic intructure here -
<html>
<head>
<title>———————</title>
</head>
<body>
<h1>——</h1> this one heading tag
<p>——–</p> this one for paragraph
<b>——–</b> This one for bold tag
</body>
</html>
For More Information Please Visit my YouTube channel and Watch all about html. You can learn In Nepali

Comments
Post a Comment