Test: Difference between revisions

From SOOP-WIKI
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 1: Line 1:
<style>
.blinking-header {
    font-size: 24px;
    font-weight: bold;
    color: #ff0000; /* Text color */
    animation: blink-animation 1s steps(5, start) infinite;
    text-align: center;
    margin-top: 20px;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
</style>
<div class="blinking-header">This is a Blinking Header!</div>
<div class="blinking-header">This is a Blinking Header!</div>

Latest revision as of 11:48, 19 August 2024

This is a Blinking Header!