Today we are going to know about HTML language, if you are a blogger or you have website and you want to use html table to show your content so its for you.
(I am going to tell you in English as well as hindi, to make you more clear)
(Hamare bahot se dost hain jo English ke sath sath hindi me samjhne ki koshish karte hai ...isliye is website par Hindi and English dono me sikhne ko milega).
(I am going to tell you in English as well as hindi, to make you more clear)
(Hamare bahot se dost hain jo English ke sath sath hindi me samjhne ki koshish karte hai ...isliye is website par Hindi and English dono me sikhne ko milega).
HTML stands for Hypertext Markup Language, and it is the
most widely used language to write Web Pages.
What is Hypertext : the link available on a web page is
called Hypertext.
What is Markup : HTML is a Markup
Language which means you use HTML to simply "mark-up" a text document
with tags that tell a Web browser how to structure it to display.
HT : Hypertext ML : Markup Language
हिंदी मे :
हाइपरटेक्स्ट उस तरीके
से संदर्भित करता है जिसमें वेब पेज (HTML दस्तावेज़) एक साथ जुड़े हुए हैं। इस प्रकार, किसी वेबपृष्ठ पर उपलब्ध लिंक को हाइपरटेक्स्ट कहा
जाता है।
एचटीएमएल एक मार्कअप
भाषा है जिसका अर्थ है कि आप टैग के साथ एक टेक्स्ट दस्तावेज़ को "मार्क-अप"
करने के लिए एचटीएमएल का उपयोग करते हैं जो एक वेब ब्राउजर को प्रदर्शित करने के लिए
इसे कैसे व्यवस्थित करता है।
In this way we can say it is a language with tags.
HTML tag are as follows :
<!DOCTYPE html>
<html>
<head>
<title>This is document title</title>
</head>
<body>
<h1>This
is a heading</h1>
<p>Document content goes here.....</p>
</body>
</html>
Upar dikhai de raha code HTML code hai, jo ek webpage hai. agar aap upar ke code ko ek text file me past karenge aur us file ko SAVE AS HTML karenge to wo webage ban jayega ....
<!DOCTYPE...>
This tag defines the document type and HTML version.
<html>
This tag encloses the complete HTML document and mainly
comprises of document header which is represented by <head>...</head>
and document body which is represented by <body>...</body> tags.
<head>
This tag represents the document's header which can keep
other HTML tags like <title>, <link> etc.
<title>
The <title> tag is used inside the <head> tag to
mention the document title.
<body>
This tag represents the document's body which keeps other
HTML tags like <h1>, <div>, <p> etc.
Is tarah se upar diye huve tages html ke basic tags hai.
Next article me iske aage ki jankari lenge.
No comments:
Post a Comment