|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="UTF-8" /> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 6 | + <meta http-equiv="X-UA-Compatible" content="ie=edge" /> |
| 7 | + |
| 8 | + <!-- import the webpage's stylesheet --> |
| 9 | + <!-- =========================================== --> |
| 10 | + <link |
| 11 | + rel="stylesheet" |
| 12 | + href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css" |
| 13 | + /> |
| 14 | + <link rel="stylesheet" href="./assets/style/index.css" /> |
| 15 | + <link |
| 16 | + href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700" |
| 17 | + rel="stylesheet" |
| 18 | + /> |
| 19 | + |
| 20 | + <link rel="icon" href="./assets/img/favicon.png" /> |
| 21 | + |
| 22 | + <!-- More tags --> |
| 23 | + <!-- =========================================== --> |
| 24 | + <meta |
| 25 | + name="description" |
| 26 | + content="CSS Text Shadow on Mouse Move Effect #JavaScript30 16/30" |
| 27 | + /> |
| 28 | + <meta name="keywords" content="code, JavaScript, Vanilla JS" /> |
| 29 | + <meta name="author" content="Simone Amorim" /> |
| 30 | + <meta name="theme-color" content="#333333" /> |
| 31 | + |
| 32 | + <!-- Open graph --> |
| 33 | + <!-- =========================================== --> |
| 34 | + <meta property="og:type" content="website" /> |
| 35 | + <meta property="og:title" content="Mouse Move Shadow" /> |
| 36 | + <meta |
| 37 | + property="og:description" |
| 38 | + content="CSS Text Shadow on Mouse Move Effect #JavaScript30 16/30" |
| 39 | + /> |
| 40 | + <meta |
| 41 | + property="og:url" |
| 42 | + content="https://simoneas02.github.io/javascript30/apps/mouse-move-shadow/" |
| 43 | + /> |
| 44 | + <meta property="og:image" content="./assets/img/img.png" /> |
| 45 | + |
| 46 | + <!-- Twitter cards --> |
| 47 | + <!-- =========================================== --> |
| 48 | + <meta name="twitter:card" content="summary_large_image" /> |
| 49 | + <meta name="twitter:title" content="Mouse Move Shadow" /> |
| 50 | + <meta |
| 51 | + name="twitter:description" |
| 52 | + content="CSS Text Shadow on Mouse Move Effect #JavaScript30 16/30" |
| 53 | + /> |
| 54 | + <meta |
| 55 | + name="twitter:url" |
| 56 | + content="https://simoneas02.github.io/javascript30/apps/mouse-move-shadow/" |
| 57 | + /> |
| 58 | + <meta name="twitter:image" content="./assets/img/img.png" /> |
| 59 | + |
| 60 | + <title>Mouse Move Shadow</title> |
| 61 | + </head> |
| 62 | + |
| 63 | + <body> |
| 64 | + <main class="container"> |
| 65 | + <h1 contenteditable>CSS Is Awesome!</h1> |
| 66 | + </main> |
| 67 | + <script src="./assets/script/index.js"></script> |
| 68 | + </body> |
| 69 | +</html> |
0 commit comments