-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (28 loc) · 987 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Space Teep</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<meta property="og:title" content="Space Teep"/>
<meta property="og:image" content="http://teep.space/og.png"/>
<meta property="og:site_name" content="Space Teep"/>
<meta property="og:description" content="Teep is in space, she's also a really good dancer."/>
<meta property="og:type" content="website"/>
<meta name="description" content="Teep is in space, she's also a really good dancer.">
</head>
<body>
<img src="./teep.png" class="teep">
<div id='title'><span>Happy Birthday Space Teep</span></div>
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
<script type="text/javascript">
var teep = document.querySelector('.teep');
document.addEventListener('mousemove', function(e) {
teep.style.left = e.clientX + 'px';
teep.style.top = e.clientY + 'px';
});
</script>
</body>
</html>