How to create flashing neon text for your website
- Web Coding

 - Nov 19, 2020
 - 1 min read
 
Today I will be teaching you how to create flashing neon text for your website using CSS animation
HTML
<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <meta name="viewport" content="width=device-width, initial-scale=1.0">
 <title>Document</title>
 <link rel="stylesheet" href="style.css">
</head>
<body>
 <p>Hello</p>
</body>
</html>CSS
*{
 padding: 0;
 margin: 0;
}
body{
 min-height: 100vh;
 display: flex;
 align-items: center;
 justify-content: center;
 background: black;
}
p{
 text-transform: uppercase;
 font-size: 104px;
 color: white;
 animation-name: neonFlicker;
 animation-duration: 1.5s;
 animation-timing-function: linear;
 animation-iteration-count:infinite;
 animation-direction: alternate;
}
@keyframes neonFlicker{
    0% {text-shadow: none;}
    100% {text-shadow: 0 0 5px #fff, 0 0 10px #fff,
 0 0 20px #46008C, 0 0 25px #46008C,
 0 0 30px #46008C, 0 0 35px #46008C,
 0 0 40px #46008C;}
}If you found this blog post helpful don’t forget to check out my other projects and if you want more content follow me on
YouTube: https://www.youtube.com/channel/UC2nxqB2usQIS2c8zwVZKWEQ
Instagram: https://www.instagram.com/coding_for_the_web/
Twitter: https://twitter.com/LearnWebCoding



Comments