Test: Difference between revisions
		
		
		
		Jump to navigation
		Jump to search
		
 Created page with "Test"  | 
				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>  | |||
Revision as of 11:35, 19 August 2024
<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>
This is a Blinking Header!