HTML क्या होता है ?
तो दोस्तों आज हम जानेंगे की HTML क्या होता है। इसका इस्तेमाल क्या है ? क्यों आपको इसके बारे में जानना जरुरी है। तो चलिए जानते है Let 's Start !!
INTRODUCTION
दोस्तों HTML एक Hyper Text Markup Language है। इसका इस्तेमाल अधिकतर Websites बनाने के लिए किया जाता है। आपने तो Google पे बहुत सारी Website देखि होगी उस Website में अधिकतर इस्तेमाल HTML का होता है। यहाँ तक की इस Website में भी इसका इस्तेमाल किया गया है।
What is Html ?
HTML stand for hyper text markup language . HTML is to create internet web pages . Its simply a collection of certain keyword called tags that are helpful in writing the document to be displayed using a browser on internet . It was developed by Tim Berners-Lee in Geneva.
HTML ELEMENT
HTML element are the fundamental of HTML . HTML document are simply a text file made up of HTML element . These element are defined using HTML tags .
Example - <h1> , <table>.
Learn About Most Important Tags
<html> Tag
This tag used to indicate that this is an HTML document . The <html > tag encloses all other HTML tags and associated text within your document.
<head> Tag
This tag is used to indicate the header section of the HTML document , which typically includes the <title> tag. its always placed after <html> tag.
<title> Tag
This tag indicate the title of this HTML page . The title is what is displayed on the upper left corner of the browser when you view a web page . it gives the document a title which is displayed on the browser's title bar at the top.
<body> Tag
The <body> tag contain all the text and graphics of the document with all the HTML tags that are used for control and formatting of the page. Everything inside the <body> tag .
Lets Go For Practical
firstly you open notepad and write your codeing and save with extension file .html
![]() |
This is code of web page |
0 Comments