Created
August 29, 2020 17:07
-
-
Save wpflames/323443251329a0fe3832f093ab8340fd to your computer and use it in GitHub Desktop.
Button with Direction Aware Hover Effect - HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Direction Aware Button Ripple Effects</title> | |
| <link rel="stylesheet" href="assets/css/style.css"> | |
| <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;800&display=swap" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <section> | |
| <div class="box"> | |
| <div class="imgBx"> | |
| <img src="images/rockstar.jpg" alt="singer"> | |
| </div> | |
| <div class="buttons"> | |
| <a id="btn-1" href="#">Concerts</a> | |
| <a id="btn-2" href="#">Discography</a> | |
| </div> | |
| </div> | |
| </section> | |
| <script src="assets/js/script.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment