text and font in html

 Font Tag 

अपनी website के  font  को configure  करके उसे और भी attractive , effective बना सकते है ! By using font's Attributes !
इस tag  को आप किसी paragraph भी apply कर सकते हे , या फिर अगर आप चाहे तो इसे paragraph के किसी particular टेक्स्ट पर भी apply कर सकते है ,

font tag को HTML 5   में   include नहीं किया गया है , इसकी जगह HTML 5  में CSS का उपयोग किया जाता हे ,

Font tag के कुछ Attributes होते है ,


  • Font Size 
  • Font Face
  • Font Color

1. Size :- इस tag से आप अपने font की size अपने according adjust (काम ,ज्यादा) करते हे , font की size आप px में देते है 12px,15px,20px etc  !

size tag को हम अब उद्धरण के द्वारा समझते है ,

   <html>
          <head>
              <title>font tag Attributes</title>
         </head>
         <body>
              <h2>Font tag's attributes</h2>
              <hr>
              <font style="font-size:28px;">I hop you a understand</font>
              <br>
              <font style="font-size:20px;">you have doubt so comment please</font>
          </body>

   </html>

Output / result



2 color :- इस tag का use करके आप अपने text और font का कलर change कर सकते है , according over ,
colour change करते टाइम हम colour का name और colour cod का उपयोग कर सकते है!

  <html>
          <head>
              <title>font tag Attributes</title>
         </head>
         <body>
              <h2>Font tag's attributes</h2>
              <hr>
              <font style="font-size:28px;color:blue;">I hop you satisfy to W4</font>
<br>
<font style="font-size:20px; color:yellow;">W4 all time trying to post</font>
          </body>
   </html>

Output of this



3 Face :- इस tag का use हम Font family customize करने के लिए  करते है !
<html>
          <head>
              <title>font tag Attributes</title>
         </head>
         <body>
              <h2>Font Tag's Attributes</h2>
              <hr>
              <font size="20px" face="Monotype Corsiva" color="blue">I hop you satisfy to W4</font>
              <br>
              <font size="20px" face="Monotype Corsiva" color="yellow">W4 all time trying to post</font>
          </body>
   </html>

Output of this code


Peregraph Tag

para tag और font tag  दोनों same होते है , और इनके attributes भी same ही होते है !

Comments