Glowing Text
<style>
@keyframes glow {
0%,100% {text-shadow:0 0 16px rgba(255, 4, 14,0.3)}
50% {text-shadow:0 0 16px rgba(255, 4, 14,1)}
}
@keyframes glow2 {
0%,100% {text-shadow:0 0 16px red}
50% {text-shadow:0 0 16px blue}
}
.glowText{
font-size:40px;
color:red;
}
</style>
<p class="glowText">Glowing Text</p>
Glowing Text
.glowText{
animation: glow 2s linear infinite
}
Glowing Text
.glowText{
animation: glow2 2s linear infinite
}
Glowing Text
.glowText{
color:white;
animation: glow 2s linear infinite
}
Glowing Text
.glowText{
color:white;
animation: glow2 2s linear infinite
}