Programming Blog

This blog is about technical and programming questions and there solutions. I also cover programs that were asked in various interviews, it will help you to crack the coding round of various interviews

Wednesday 3 January 2018

HTML code to create a bouncing text

<html>
<style>
 b{color:Blue;}
 body{color:pink;}
</style>
<title>Bouncing Text</title>
<body>
<marquee direction="down" width="500" height="500"
behavior="alternate" style="border:solid" scrollamount="10">
  <marquee behavior="alternate">
  <b>Hey I am jumping</b></marquee>
  </marquee>
  </body>
  </html>

No comments:

Post a Comment