Files
IsItJasonsBirthday/index.html
T

33 lines
927 B
HTML
Raw Normal View History

2017-10-10 12:57:38 +00:00
<!DOCTYPE html>
2018-03-19 20:01:30 +00:00
<html lang="en">
2017-10-10 12:57:38 +00:00
<head>
2019-10-06 16:38:47 +00:00
<title>Is it Jason's Birthday?</title>
2019-10-07 02:14:13 +00:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
2018-03-14 21:57:55 +00:00
2019-10-06 19:02:50 +00:00
<!-- import the webpage's stylesheet -->
2019-10-07 02:14:13 +00:00
<link
href="https://fonts.googleapis.com/css?family=Kanit:700i&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
2019-10-06 19:02:50 +00:00
<!-- import the webpage's javascript file -->
<script src="/confetti.js" defer></script>
<script src="/script.js" defer></script>
</head>
<body>
<canvas id="confetti-holder"></canvas>
<div id="container">
<p id="isit"></p>
</div>
2019-10-06 19:14:50 +00:00
<div class="glitchButton" style="position:fixed; top:1vw; right:1vw;"></div>
2018-03-19 20:11:32 +00:00
<script src="https://button.glitch.me/button.js"></script>
2019-10-07 02:14:13 +00:00
2019-10-06 19:14:50 +00:00
<a id="pilink" href="#">&pi;</a>
2017-10-10 12:57:38 +00:00
</body>
</html>