Introduction: In this project, we will create a button which is covered by an animation that creates RGB effect HTML: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>RGB button by creation code</title> <link rel="stylesheet" href="style.css"> </head> <body> <a href="#" class="button"> <span>CREATION CODE</span> </a> </body> </html> CSS: html, body{ height: 100%; overflow: hidden; } body{ background: #191919; display: flex; align-items: center; justify-content: center; } .button{ background-image: linear-gradient(90de...
Get source code of amazing projects