Online Computer Course Join Now
Software Engineering Course | Duration: 1 Year | Fees: 1500/- Monthly | Learn 25+ Language | Call / WhatsApp: +91 9650597419 (Vinay Sir) | Address: Sec - 36, Narsinghpur, Gurugram, Haryana
All Computer Notes | Practice Assignment | Hindi & English Medium Computer PDF Notes | Computer eBooks | Call / WhatsApp: +91 9650597419 (Vinay Sir) Grow Your Coaching Business 10x with your own coaching app | अपने नाम से Teaching App बनवायें | Call / WhatsApp: +91 9650597419 (Vinay Sir)
1. CCC PDF Notes Buy Now
2. Basic Computer PDF Notes Buy Now
3. DCA PDF Notes Buy Now
4. ADCA PDF Notes Buy Now
5. PGDCA PDF Notes Buy Now
6. MS Office PDF Notes Buy Now
7. MS Word PDF Notes Buy Now
8. MS Excel PDF Notes Buy Now
9. Adv. Excel PDF Notes Buy Now
10. MS PowerPoint PDF Notes Buy Now
11. Internet PDF Notes Buy Now
12. Tally Prime PDF Notes Buy Now
13. HTML PDF Notes Buy Now
14. CSS PDF Notes Buy Now
15. Java Script PDF Notes Buy Now
16. C language PDF Notes Buy Now
17. C++ PDF Notes Buy Now
18. J Query PDF Notes Buy Now
19. WordPress PDF Notes Buy Now
20. PHP PDF Notes Buy Now
21. VBA Macro PDF Notes Buy Now
22. Python PDF Notes Buy Now
23. Android PDF Notes Buy Now
24. Digital Marketing PDF Notes Buy Now
25. Computer Repair PDF Notes Buy Now

6. HTML Text Formatting Tag की पूरी जानकारी हिंदी में

                    HTML Text Formatting Tag



Hello Friends!
मै विनय Concept Computer Education से.........  

यह HTML का chapter 6 है।  इस chapter में हमलोग HTML Text Formatting Tag के बारे में पढ़ने वाले है। 

इस tag का प्रयोग webpage  में किसी भी text को अलग अलग तरह से formatting करने के लिए किया जाता है। 

HTML Text Formatting Tag :

1. Bold : <b> tag & <strong> tag 
2. Italic : <i> tag  & <em> tag   
3. Underline : <u> & <ins> tag 
4. Mark : <mark> tag 
5. Superscript : <sup>tag 
6. Subscript :<sub> tag 
7. Small : <small> tag 
8. Big : <big> tag 
9. Delete : <delete> tag 
10. Break : <br>tag

तो चलिए ये सभी tags के बारे में detail से समझते है। 



1. Bold : <b> tag & <strong> tag 

इस tag का use किसी text यानि अक्षर को bold करने के लिए किया जाता है। 

किसी text यानि अक्षर को bold करने के लिए <b> tag की जगह  पर <strong> tag का भी use किया जाता है। 

इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Bold text  
</title>
</head>
<body>
<b>This is bold text</b>
</body>   
</html>     

ऊपर दिए गए example का output आप यहाँ देख सकते है। 


2. Italic : <i> tag  & <em> tag  

इस tag का use किसी text यानि अक्षर को तिरछा करने के लिए किया जाता है। 

किसी text यानि अक्षर को तिरछा करने के लिए <i> tag की जगह  पर <em> tag का भी use किया जाता है। 

इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Italic text  
</title>
</head>
<body>
<i>This is Italic text</i>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।
  

3. Underline : <u> & <ins> tag 

इस tag का use किसी text यानि अक्षर को underline करने के लिए किया जाता है। 

किसी text यानि अक्षर को तिरछा करने के लिए <u> tag की जगह  पर <ins> tag का भी use किया जाता है। 

इस tag का example निचे दिया गया है। 


<!DOCTYPE html>
<html>
<head>
<title>
underline  text  
</title>
</head>
<body>
<u>This is underline  text</u>
</body>   
</html>  


ऊपर दिए गए example का output आप यहाँ देख सकते है।

4. Mark : <mark> tag

इस tag का use किसी text यानि अक्षर को highlight करने के लिए किया जाता है। 

इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
highlighted  text  
</title>
</head>
<body>
<mark>This is highlighted text</mark>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।



5. Superscript : <sup>

इस tag का use किसी text को दूसरे text से थोड़ा सा ऊपर दिखाने के लिए किया जाता है। 



इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Superscript text  
</title>
</head>
<body>
<p>This is normal text <sup>This is Superscript text </sup></p>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।


6. Subscript :<sub> tag 


इस tag का use किसी text को दूसरे text से थोड़ा सा निचे दिखाने के लिए किया जाता है। 



इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Subscript text  
</title>
</head>
<body>
<p>This is normal text <sub>This is Subscript text </sub></p>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।


7. Small : <small> tag 


इस tag का use किसी text को दूसरे text से छोटा दिखाने के लिए किया जाता है। 


इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Small  text  
</title>
</head>
<body>
<p>This is normal text <small>This is Small  text </small></p>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।


8. Big : <big> tag 

इस tag का use किसी text को दूसरे text से बड़ा दिखाने के लिए किया जाता है। 


इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Small  text  
</title>
</head>
<body>
<p>This is normal text <big>This is big text </big></p>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।




9. Delete : <delete> tag 


इस tag का use किसी text को Delete  show करने के लिए किया जाता है। जब किसी text को delete show करते है तो उस text के ऊपर line दिखाई देता है। 


इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Deleted  text  
</title>
</head>
<body>
<del>Deleted text</del>
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।


10. Break : <br> tag

इस tag का use, line break करने के लिए किया जाता है इसका मतलब जब हम एक line लिखकर दूसरा  line लिखना start करते है तो हम दूसरा लाइन लिखने से पहले  <br> tag का use करते है। 


इस tag का example निचे दिया गया है। 

<!DOCTYPE html>
<html>
<head>
<title>
Break text  
</title>
</head>
<body>
<p>Concept Computer Center<br>
Best Professional Computer Institute in Gururam
</p>   
</body>   
</html>  

ऊपर दिए गए example का output आप यहाँ देख सकते है।




Update Soon  
Next Chapter : HTML Links 
 


यदि आपको समझने में किसी भी प्रकार की कोई समस्या
आती है तो आप  Whatsapp या Email के द्वारा Question 
पूछ सकते है। 

Whatsapp No. - 9650597419

Thank you, Have a great day  
Enjoy Our HTML Notes in Hindi

ADVANCE LEVEL WEBSITE DESIGN COURSE

Fees Only : 1500/- Month
Call / Whatsapp / Telegram : 9650597419
DAILY 2 Hrs. Practical Class + 2 Hrs. Practice 



CONCEPT COMPUTER EDUCATION, GURUGRAM, HARYANA, INDIA

Post a Comment

0 Comments

All Computer Notes

Basic Computer Notes
1.Basic Computer Notes in English
2.Basic Computer Notes in Hindi
3.Computer Related Full Form
4.Computer Shortcut Keys
5.Keyboard Symbols Name
MS Word Notes in Hindi
1.MS Word Practical Notes
2.Chapter1: Introduction to MS Word
3.Chapter 2: Some Basic Point of MS Word
4.Chapter3 : MS Word - File Menu
5.Chapter 4: MS Word - Home Menu
6.Chapter 5: MS Word - Insert Menu
6.Chapter 5: MS Word - Insert Menu
7.Chapter 6: MS Word - Page Layout Menu
8.Chapter 7: MS Word - References Menu
9.Chapter 8: MS Word - Mailing Menu
10.Chapter 9: MS Word - Review Menu
11.Chapter 10: MS Word - View Menu
MS Word Notes in English
1.Chapter1: MS Word Home Menu
2.Chapter2: MS Word Insert Menu
3.Chapter3: MS Word Page Layout Menu
4.Chapter4: MS Word References Menu
5.Chapter5: MS Word Mailings Menu
6.Chapter6: MS Word Review Menu
7.Chapter7: MS Word View Menu
MS Excel Notes in Hindi
1.Chapter1: Introduction to MS Excel
2.Chapter2: MS Excel Home Menu
3.Chapter3: MS Excel Insert Menu
4.Chapter4: MS Excel Page Layout Menu
5.Chapter5: MS Excel Data Menu
6.Chapter6: MS Excel Review Menu
7.Chapter7: MS Excel View Menu
MS Excel Notes in English
1.Chapter1: Introduction to MS Excel
2.Chapter2: MS Excel Home Menu
3.Chapter3: MS Excel Insert Menu
4.Chapter4: MS Excel Page Layout Menu
5.Chapter5: MS Excel Data Menu
6.Chapter6: MS Excel Review Menu
7.Chapter7: MS Excel View Menu
MS PowerPoint Notes in English
1.Chapter1: Introduction to MS MS PowerPoint
2.Chapter2: MS PowerPoint Home Menu
3.Chapter3: MS PowerPoint Insert Menu
4.Chapter4: MS PowerPoint Design Menu
5.Chapter5: MS PowerPoint Transitions Menu
6.Chapter6: MS PowerPoint Animations Menu
7.Chapter7: MS PowerPoint Slide Show Menu
8.Chapter8: MS PowerPoint Review Menu
9.Chapter9: MS PowerPoint View Menu
MS PowerPoint Notes in Hindi
1.Chapter1: Introduction to MS PowerPoint
2.Chapter2: MS PowerPoint Home Menu
3.Chapter3: MS PowerPoint Insert Menu
4.Chapter4: MS PowerPoint Design Menu
5.Chapter5: MS PowerPoint Transitions Menu
6.Chapter6: MS PowerPoint Animations Menu
7.Chapter7: MS PowerPoint Slide Show Menu
8.Chapter8: MS PowerPoint Review Menu
9.Chapter9: MS PowerPoint View Menu
MS Excel Formula Notes
1.How to Add in Excel
2.How to Subtract in Excel
3.How to Multiply in Excel
4.How to Divide in Excel
5.MAX Formula in Excel
6.MIN Formula in Excel
7.ROMAN Formula in Excel
8.SQRT Formula in Excel
9.POWER Formula in Excel
10.LCM Formula in Excel
11.GCD Formula in Excel
12.FACT Formula in Excel
13.LOWER Formula in Excel
14.UPPER Formula in Excel
15.PROPER Formula in Excel
16.LEFT Formula in Excel
17.RIGHT Formula in Excel
HTML Notes
Chapter 1 : Introduction to HTML
Chapter 2 : HTML Versions
Chapter 3 : HTML DOCTYPE Declaration
Chapter 4 : HTML Attributes
Chapter 5 : HTML Heading Tag
Chapter 6 : HTML Text Formatting Tag
Chapter 7 : HTML Anchor Tag
Chapter 8 : HTML Image Tag
Chapter 9 : HTML List Tag
Chapter 10 : HTML Table Tag
Chapter 11 : HTML Marquee Tag
Chapter 12 : HTML Preformatted & Horizontal Tag
Chapter 13 : HTML Image Tag
Chapter 14 : HTML Anchor Tag
Chapter 15 : HTML Audio Tag
Chapter 16 : HTML Video Tag
Chapter 17 : HTML Iframe Tag
Chapter 18 : HTML Form Tag
Chapter 19 : HTML Website Layout
Online Computer Course Join Now
Computer PDF Notes | E-books | Practice Assignments | Project File | Call / WhatsApp: +91 9650597419 (Vinay Sir)
1. CCC PDF Notes Buy Now
2. Basic Computer PDF Notes Buy Now
3. DCA PDF Notes Buy Now
4. ADCA PDF Notes Buy Now
5. PGDCA PDF Notes Buy Now
6. MS Office PDF Notes Buy Now
7. MS Word PDF Notes Buy Now
8. MS Excel PDF Notes Buy Now
9. Adv. Excel PDF Notes Buy Now
10. MS PowerPoint PDF Notes Buy Now
11. Internet PDF Notes Buy Now
12. Tally Prime PDF Notes Buy Now
13. HTML PDF Notes Buy Now
14. CSS PDF Notes Buy Now
15. Java Script PDF Notes Buy Now
16. C language PDF Notes Buy Now
17. C++ PDF Notes Buy Now
18. J Query PDF Notes Buy Now
19. WordPress PDF Notes Buy Now
20. PHP PDF Notes Buy Now
21. VBA Macro PDF Notes Buy Now
22. Python PDF Notes Buy Now
23. Android PDF Notes Buy Now
24. Digital Marketing PDF Notes Buy Now
25. Computer Repair PDF Notes Buy Now