How to create HTML code


HTML Marquee

The marquee tag is a HTML element which causes text to scroll up, down, left or right automatically.

The marquee tag एक एचटीएमएल घटक आहे ज्यामुळे मजकूर आपोआप वर, खाली, डावीकडे किंवा उजवीकडे स्क्रोल होतो.

An HTML marquee is a scrolling piece of text displayed either horizontally across or vertically down your webpage depending on the settings. This is created by using HTML <marquees> tag.


How to add HTML code to Blog:

Copy or write the codes given in the Example-1 and Example-2 in Note Pad in P.C. or Laptop.

Go to blogger.

Click on 'Layout'

Click on Add a Gadget

Click on (+) Plus sign of HTML/ Java Script

Click on Save Button

Open Blog and see the moving words or sentences.


1) Example 1

Here Replace the words: ‘Learn With Tushar Chavan’ to any other words which you like.

येथे आपल्या सोयीनुसार ‘तुषार चव्हाण सह शिका’ हे शब्द बदला. तेथे जे शब्द आपण लिहाल ते हलतांना दिसतील.


<!DOCTYPE html>

<html>

 

   <head>

      <title>HTML marquee Tag</title>

   </head>

      

   <body>

   <marquee direction = "left">Learn With Tushar Chavan</marquee>

   </body>

      

</html>

 

2) Example 2

Here Replace the words: ‘Learn With Tushar Chavan’ to any other words which you like.

<!DOCTYPE html>
<html>
 
   <head>
      <title>HTML marquee Tag</title>
   </head>
 
   <body>
 <marquee direction = "right">Learn With Tushar 
Chavan</marquee>
   </body>
       
</html>

-----------------------------------------------------------------------------------------

HTML marquee Tag Learn With Tushar Chavan

This will show the such results in your web page.

HTML marquee Tag Learn With Tushar Chavan -----------------------------------------------------------------------------------------