If you want to create a web-page, firstly you have to know HTML. So, what is HTML?
HTML is an evolving language, which allows you to create a website. HTML stands for Hyper Text Markup Language. In 1990 Tim Berners-Lee first developed HTML. HTML 1.0 was the first version of HTML and the latest version of HTML is HTML5. There are so many tags in HTML among them 6 are the most important tags, these are____
1. DOCTYPE
2. HTML
3. HEAD
4. TITLE
5. STYLE
6. BODY
Before coding an HTML document you should know these tags. This is very easy to learn. At first, open your code Editors like Notepad, and then write the bellow text on notepad.
<!DOCTYPE html>
<html>
<head>
<title>:: my first web page ::</title>
<style>
</style>
</head>
<body>
<h1>THIS IS HEADING</h1>
<p>THIS IS PARAGRAPH</p>
</body>
</html>
then it saves with .html extension.
Tags always appear in pair, the first tag is called start tag and the last tag is called close tag. These tags tell the browser how to display the web-page. Tags are not displayed on the browser. Only the content is showed on the browser. A tag can have attributes which provide additional information on the page. And it appears in the opening tag with red color. The examples of some attributes are class, id, href, src, alt, etc.
If you want to give the style of the page, you can also write the CSS in the style tag. So, only with the help of HTML language, you can create a static web-page.
I am Sujata Biswas working as a Front-end developer at Openweb Solutions. But, I also like to study and learn about new technologies and write about them.