noa's profile picture

Published by

published
updated

Category: Web, HTML, Tech

ㅤ/ᐠ - ˕ -マ How to add a flashing text on your about me section!

<style>

  @keyframes neon {

    0% { color: black; } /*you can add your own color/hex code here preferably alternating*/

    50% { color: lime; }

    100% { color: black; }

  }


  .neon-text {

    font-weight: bold; /*YOU CAN CHANGE THE LINE WEIGHT OF THE LETTERS HERE*/

    font-size: 32px; /* Adjust the font size as desired */

    animation: neon 1s infinite;

  }

</style>


<  span class="neon-text" > /*YOUR TEXT HERE*/</span  >


Lemme know if it works! I'm still very much new to coding! REMOVE THE SPACES AFTER NEON TEXT



3 Kudos

Comments

Displaying 0 of 0 comments ( View all | Add Comment )