Muhammad Yahya
Posted on 30 August 2022
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <link rel="stylesheet" href="index.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <h2> <span>C</span> <span>O</span> <span>D</span> <span>E</span> </h2> </body> </html> ################################################# *{ margin: 0; padding: 0; box-sizing: border-box; } body{ display: flex; justify-content: center; align-items: center; background: #000; min-height: 100vh; } h2{ font-size: 6rem; font-weight: 500; color: #333; } h2 span{ animation: animate 1s linear infinite; } h2 span:nth-child(1){ animation-delay: 0s; } h2 span:nth-child(2){ animation-delay: 0.2s; } h2 span:nth-child(3){ animation-delay: 0.4s; } h2 span:nth-child(4){ animation-delay: 0.6s; } h2 span:nth-child(5){ animation-delay: 0.8s; } @keyframes animate{ 0%, 80%{ color: #333; text-shadow: none; } 100%{ color: #fff; text-shadow: 0 0 10px #fff, 0 0 20px #fff 0 0 40px #fff 0 0 80px #fff 0 0 120px #fff 0 0 160px #fff } }
1
45
0
Pakistan
Be like terminal Able to do anything But under the limit
1 Comments
Rizwan Khan
26 September 2022
thanks for sharing @muhammad, its really nice