Pari Digital Marketing

success behind you

bedpage

Breaking

Amazon Festival Offers - Get 80% Discount

Thursday 6 August 2020

HTML Marquee Tag Kya Hai | What is Marquee HTML Tag in Hindi

Stay Safe Wear Mask, Protect Your Self from COVID-19 Thanks For Visit My Website

 HTML Marquee Tag Kya Hai | What is Marquee HTML Tag in Hindi

हैल्लो ब्लॉगर,
इस पोस्ट में हम बात करेंगे <marquee> HTML tag के बारे में , और जानेगे  कि अपनी वेबसाइट में किस तरह से Marquee HTML tag को कैसे उपयोग कर बहुत ही अच्छे effect को लगा सकते है। इस पोस्ट में Marquee HTML tag के बारे में सम्पूर्ण डिटेल्स जाने। Marquee HTML tag क्या है , Marquee HTML tag को कैसे यूज़ करें। तो  जान लेते है कि  HTML Marquee Tag Kya Hai | What is Marquee HTML Tag in Hindi

What is Marquee HTML tag ?

HTML <marquee> टैग का उपयोग सेटिंग के आधार पर आपके वेब साइट पेज पर क्षैतिज या लंबवत रूप से प्रदर्शित पाठ या छवि के स्क्रॉलिंग टुकड़े के लिए किया जाता है।
HTML Marquee Tag Kya Hai | What is Marquee HTML Tag in Hindi

Simple for Moving Text To Right to Left Default

<marquee> your Text here</marquee>

 marquee  टैग का उपयोग वेबसाइट पेज या पोस्ट में Text या Image को चलाने, स्क्रॉलिंग करने के लिए उपयोग में लाया जाता हैं। 
Example : 

<!DOCTYPE html>
<html>

   <head>
      <title>HTML marquee Tag</title>
   </head>

   <body>
      <marquee>This is basic example of marquee</marquee>
   </body>

</html>

How to use marquee html tag in Hindi

Attributes Of Marquee HTML Tag

1. behavior
Values : scroll, slide, alternate : स्क्रॉलिंग को बताने के लिए 

2. bgcolor
Values: rgb(x,x,x), #xxxxxx, colorname : background का कलर बताने के लिए  

3. direction
Values : up, down, left, right      : स्क्रॉलिंग कंटेंट का डायरेक्शन बताने के लिए 

4. height
Values : pixels or %                     : marquee tag की हाइट बताने के लिए 

5. hspace
Values :pixels                             : marquee चारों ओर क्षैतिज स्थान निर्दिष्ट करता है।

6. loop
Values : number                    :  लूप को कितनी बार निर्दिष्ट करता है। डिफ़ॉल्ट मान INFINITE है, जिसका                                                         अर्थ है कि marquee unlimited रिपीट होगा।
7. scrolldelay
Values : seconds                   :परिभाषित करता है कि प्रत्येक छलांग के बीच में कितनी देर हो सकती है।

8. scrollamount
Values : number                  :परिभाषित करता है कि कितनी दूर कूदना है।

9. width
Values : pixels or %          : marquee की चौड़ाई को परिभाषित करता है।

10. vspace
Value : pixels                         : marquee के चारों ओर ऊर्ध्वाधर स्थान निर्दिष्ट करता है।


Marquee HTML टैग विशेषता का उपयोग कैसे करें?

How to use marquee HTML tag attribute in Hindi 

दोस्तों marquee tag एट्रिब्यूट को बहुत ही आसानी से आप उपयोग में ला सकते है। 
marquee tag attribute को कैसे use  करना है आप example के साथ देखेंगे। 

Use of Behavior Attribute of Marquee Tag  

Change Behavior of Moving Text From Right to Left

<marquee bgcolor="cyan" behavior="scroll"> your Text here</marquee>

Live :

your Text here

Change Behavior of Move Text From Right to Left and Stop at end Left

<marquee bgcolor="cyan" behavior="slide"> your Text here</marquee>

 Live 

your Text here 

Change Behavior of Move Text From Right to Left and Left to right

<marquee bgcolor="cyan" behavior="alternate"> your Text here</marquee>

Live :

your Text here  

Use of bgcolor Attribute of Marquee Tag 

Marquee tag के background कलर को बदलने के लिए Use किया जाता है। 

<marquee bgcolor="yellow" behavior="alternate" direction="left"> your Text here</marquee>

Live 

your Text here 

Use of direction Attribute of Marquee Tag

Direction attribute की मदद से आप scrolling direction को बता  हैं 

Change Direction of Moving Text

Moving Text Direction Right to Left 

<marquee bgcolor="green" behavior="scroll" direction="left"> your Text here</marquee>

Live 

your Text here  

Moving Text Direction Left to Right

<marquee bgcolor="cyan" behavior="scroll" direction="Right"> your Text here</marquee>

Live 

your Text here 

Moving Text Direction Down to Up

<marquee bgcolor="cyan" behavior="scroll" direction="Up"> your Text here</marquee>

Live Demo

your Text here

Moving Text Direction Up To Down

<marquee bgcolor="pin" behavior="scroll" direction="Down"> your Text here</marquee>

Live

your Text here

Change Font Color of marquee Text 

<marquee bgcolor="cyan" behavior="alternate" direction="right" height="30%"><font color="Yellow">your Text here</font></marquee>

Live

your Text here


Use of height Attribute of Marquee Tag

Height Attribute का उपयोग marquee text को height देने के  लिए किया जाता है। 

Change height of Moving text
<marquee bgcolor="cyan" height="25%"> your Text here</marquee>

<marquee bgcolor="cyan" behavior="alternate" direction="right" height="50%"><font color="Yellow">your Text here</font></marquee>

Live 

your Text here


Use of width Attribute of Marquee Tag

Change width of Moving text
<marquee bgcolor="cyan" width="50%"> your Text here</marquee>


Live 

your Text here

Align Postion of Marquee Tag

<p align="center">
<marquee bgcolor="cyan" width="50%"> your Text here</marquee>
</P>

Live 

your Text here

 


Use of hspace Attribute of Marquee Tag


<marquee bgcolor="cyan" behavior="scroll" direction="Right" hspace="100pix"> your Text here</marquee>

Live

your Text here


Use of loop Attribute of Marquee Tag

<marquee bgcolor="cyan" behavior="scroll" direction="Right" loop="5"> your Text here</marquee>

Live

your Text here


Use of scrolldelay Attribute of Marquee Tag

<marquee bgcolor="cyan" behavior="scroll" direction="Right" scrolldelay="5s"> your Text here</marquee>

Live

your Text here

Use of scrollamount Attribute of Marquee Tag


<marquee bgcolor="cyan" behavior="scroll" direction="Right" scrollamount="10"> your Text here</marquee>

Live

your Text here

Use of vspace Attribute of Marquee Tag

<marquee bgcolor="cyan" behavior="scroll" direction="Right" vspace="100pix"> your Text here</marquee>

Live

your Text here
Hello Friend
How are you

दोस्तों यह पोस्ट आपको कैसा लगा कमेंट में जरूर बताये। HTML Marquee Tag Kya Hai | What is Marquee HTML Tag in Hindi

How to use marquee html tag in Hindi

इस टैग को समझने और use करने में कोई भी प्रॉब्लम हो तो कमेंट में जरूर बताये 


9 comments:

  1. I’m trampled by your contents carry on the wonderful work.
    website design agency

    ReplyDelete
  2. Well, I have got the best information from here the site is fully stuffed with the knowledgeable information.
    UI designers

    ReplyDelete
  3. Nobody can reject the info you have given in the blogs, this is actually a great work.
    user experience design agency

    ReplyDelete
  4. They responded quickly to questions, global just designs made valuable suggestions for improvement, and found creative solutions.

    ReplyDelete
  5. They collaborated well with the internal team logo professional design metalab design and made sure the project kept to an ambitious pace.

    ReplyDelete
  6. Their technical team is hardworking, and they suggested ways to improve our project model to make it more efficient how much is a gram of weed

    ReplyDelete
  7. Really amazing blog, I’d love to discover some extra information.
    brand strategy companies

    ReplyDelete
  8. I got this blog site through my friends and when I searched this really there were informative articles at the place.
    web design company

    ReplyDelete

New For You Open It

Popular Posts

WooCommerce