PAGES

Tuesday, 22 September 2026

MARQUEE CODE FOR BLOG

 <style>

.marquee {

  width: 100%;

  overflow: hidden;

  white-space: nowrap;

  box-sizing: border-box;

}


.marquee span {

  display: inline-block;

  padding-left: 100%;

  animation: scroll 60s linear infinite;

  font-size: 24px;

  color: purple;

  font-weight: bold;

}


@keyframes scroll {

  0%   { transform: translateX(0); }

  100% { transform: translateX(-100%); }

}

</style>




<div class="marquee">

  <span>

    MY DEAR STUDENTS AND TEACHERS - Gratitude and blessings are key to the success of hard work. USM.

  </span>

</div>



</!doctype>

No comments:

Post a Comment