Skip to content

Instantly share code, notes, and snippets.

@jovinbm
Last active February 4, 2017 00:13
Show Gist options
  • Select an option

  • Save jovinbm/41fb098afdd014596055a3e9e058d235 to your computer and use it in GitHub Desktop.

Select an option

Save jovinbm/41fb098afdd014596055a3e9e058d235 to your computer and use it in GitHub Desktop.
A simple website that tells a user that we love them
<!--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