Hello दोस्तों! आज मैं आपको इस पोस्ट में All HTML tag list हिंदी में…. बताऊंगा,
शुरू करने से पहले जान लेते हैं कि इस article में हम क्या-क्या cover करने वाले हैं.
- HTML tag list by categories
- Basic html tags
- Formatting tags
- Link tags
- Image tags
- Frame tags
- Style tags
- Form and input tags
- Table tags
- Script tags
- Section tags
- Meta tags
- List tags
आप article को पूरा पढ़े ताकि आपको HTML tag list का complete knowledge हो सके |
तो चलिए शुरू करते हैं:-
WHAT IS TAGS :
एक html file में tags और text का combination होता है। basically tag में यह बताते है । कि text के साथ क्या करना है । एक tag एक specific purpose define करता है । हर task के लिए अलग अलग tags का प्रयोग किया जाता हैं। किसी भी tag के दो पाठ होते हैं।
Opening tag के बाद वह लिखा जाता है। जिस पर वह tag apply हो रहा हो। इसके बाद closing tag लिखा जाता है जो interpreter को यह बताता है कि यह tag का प्रयोग यही तक था ।
Opening tag को <>इसके अन्दर लिखा जाता है तथा closing tag को </> इसके अंदर लिखते हैं।
Ex <tag name> </tag name>
Types of HTML tags :
Html में बहुत प्रकार के tag available है । कुछ tag text का फॉर्मेट change के लिए use किये जाते है तो कुछ multimedia elements जैसे कि image , audio , video आदि को insert करने के लिए use किये जाते है। तो कुछ tag container की तरह भी काम करते हैं जिनके अंदर दूसरे tags define किया जाता है जो sub tags होते है।
All HTML Tag list
-
Basic Tags :-
<-…-> |
एक Comment को Define करता है. |
<!–…–> |
Document type को Define करता है. |
<html> |
HTML Document को Define करता है. |
<head> |
Document के लिए metadata information को लिखा जाता है. |
<tittle> |
HTML Document का tittle को Define करता है. |
<body> |
Document body को Define करता है. |
<h1> to<h6> |
Heading element है. Html Document में heading को Define करता है. |
<p> |
Document Paragraph को Define करता है. |
<hr> |
Hr element से Html Document में Horizontal को Define करता है. |
<br> |
Single line break देने के लिए किया जाता है |
2. Formatting Tags
<abbr> |
Abbreviation element से Abbreviation Define किया जाता है. |
<b> |
Text को bold करता है. |
<big> |
Big element से text को normal size से बडा करने के लिए किया जाता है. |
<blockquote> |
Source से प्राप्त Data को Qoute करने के लिए किया जाता है. |
<center> |
Html element की Center position को Define करता है. |
<code> |
Computer code को Define करता है. |
<del> |
Document से delete text को Define किया जाता है. |
<em> |
Text को Emphasized करता है. |
<font> |
Text का Font, colour, Size को Define करता है. |
<ins> |
Insert element से delete text की जगह पर लिखे गए text को Define करता है. |
<i> |
Text को Italic करता है. |
<mark> |
Mark element से text Highlight किया जाता है. |
<pre> |
Preformat element से preformatted text Define किया जाता है. |
<q> |
Quotation element से Quotation Define किया जाता है. |
<small> |
Small element से text को normal size से छोटा करने के लिए किया जाता है. |
<strike> |
Strikethrough Element से Strikethrough text Define किया जाता है. |
<strong> |
Important text को Define करता है. |
<sup> |
Text Superscript करता है. |
<u> |
Text Underline किया जाता है. |
3. Link Tags
<a> |
Anchor Element Document में hyperlink बनाने किया जाता है. |
<link> |
Link Element external Document को html document से जोडने के लिए किया जाता है. |
4. Image Tag
<img> |
Image element Document में Image Define किया जाता है. |
<map> |
Image-Map Define किया जाता है. |
<area> |
Image-map में एक विशेष Area Define किया जाता है. |
5. Frame Tags :
<frame> |
Document में frame Define किया जाता है. |
<frameset> |
Frameset को define किया जाता है. |
<noframes> |
Element द्वारा उन Browsers के लिए Alternet content को लिखा जाता है, जो frames को support नही करते है. |
<iframe> |
Element द्वारा HTML Document में Inline Frame को Define किया जाता है. |
What is Hypermedia in Hindi ?( हिंदी में हाइपर मीडिया क्या है?)
What is jQuery ? जाने हिंदी में
What is web browser ? वेब ब्राउज़र क्या है.जाने हिंदी में
6. Style Tags :
<style> |
Style element द्वारा HTML Document में Style Information को Define किया जाता है. इसके द्वारा text color, text color, text size Heading color और Size, Paragraph Size को अपनी पसंद अनुसार define किया जा सकते हैं. |
7. Form and input tags :
<form> |
Form create करने के लिए किया जाता है. |
<input> |
Form में input controls Create करने के लिए किया जाता है. |
<textarea> |
Text Area Form में create करने के लिए किया जाता है. |
<button> |
Form में Button create किया जाता है. |
<option> |
Drop-Down list में options create किया जाता है. |
<optgroup> |
Option group द्वारा drop-dwon list में Options Group बनाया जाता है. |
<label> |
Input element के लिए Lable को Define किया जाता है. |
<fieldset> |
Element द्वारा From में element group create किया जाता है. |
<legend> |
Legend element द्वारा Fieldset element caption create किया जाता है. |
8. Table tags :
<table> |
Table को Define किया जाता है. |
<caption> |
Element Table caption को Define किया जाता है. |
<th> |
Table header को Define किया जाता है. |
<tr> |
Table Row को Define किया जाता है. |
<td> |
Element Table data को Define किया जाता है. |
<thead> |
Table Header Element द्वारा Header Content का group बनाया जाता है. |
<tbody> |
Table Body Element द्वारा table body Content का group बनाया जाता है. |
<tfoot> |
1. Element Table footer द्वारा footer content को Group किया जाता है. |
9. Script tags :
<script> |
HTML Document Script को Define किया जाता है. |
<nonscript> |
Element द्वारा उन Browsers के लिए Alternet content को लिखा जाता है, जो Script को support नही करते है. |
10. Section tags :
<span> |
Element के द्वारा html में inline section बनाए जाते हैं. इसके द्वारा एक शब्द, paragraphs का एक Section बना सकते हैं. |
<div> |
Division Element से html document में अलग-अलग Section को Define किया जाता है |
11. Meta tags :
<head> |
Haider element के द्वारा एक document के बारे में information को define किया जाता है. |
<meta> |
Element द्वारा एक document का metadata define किया जाता है. |
<base> |
Base URLs Define किया जाता है. |
12. List Tags :
<ul> |
Unorder List Element द्वारा Bullet list create किया जाता है. |
<ol> |
Order List Element द्वारा Number list create किया जाता है. |
<li> |
List Item element द्वारा list data define किया जाता है. |
<dl> |
Definition List Define किया जाता है. |
<dt> |
Definition Term Define किया जाता है. |
<dd> |
Element Definition Description Define किया जाता है. |
Note:- ये पोस्ट आपको कैसी लगी आप कमेंट कर के बताईये !अगर आपको कुछ पूछना या अपनी राय देनी हो तो आप हमे कमेंट या [email protected] ईमेल करके बता सकते है हम पूरी कोसिस करेंगे की आपका रिप्लाई जल्दी से जल्दी दे सखे ….
इसे भी देखे:
Hello दोस्तों! नीचे दिए गए links पर click करके आपको हम इस पोस्ट में (Computer Online Test) की Practice कराएंगे जिससे आप अपने CCC, O level , कम्प्युटर GK की practice कर सकते है.
इस post के द्वारा आप अपनी कम्प्युटर की नॉलेज बड़ सकते है.
उसके साथ ही साथ आप अपने कई प्रकार के पेपरो की भी तैयरी भी कर सकते है.
जैसे की CCC, O level , कम्प्युटर GK की practice कर सकते है,