Last active
February 4, 2017 00:13
-
-
Save jovinbm/41fb098afdd014596055a3e9e058d235 to your computer and use it in GitHub Desktop.
A simple website that tells a user that we love them
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
| <!--A simple website that tells a user that we love them--> | |
| <html> | |
| <head> | |
| <title>I Love You</title> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| setInterval(() => { | |
| var el = document.createElement("h1"); | |
| el.id = "title"; | |
| el.innerHTML = "I Love You"; | |
| document.body.appendChild(el); | |
| }, 500); | |
| </script> | |
| <h1>I Love you</h1> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment