-
Notifications
You must be signed in to change notification settings - Fork 0
/
halloweeninvite.html
37 lines (31 loc) · 1.26 KB
/
halloweeninvite.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
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hello!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="/css/halloweenstyle.css">
<!-- import the webpage's javascript file -->
<script src="/halloweenscript.js" defer></script>
</head>
<body>
<div class="gooeys center">
<canvas style="position:absolute;" id="canvas"</canvas>
</div>
<div class="glow center"></div>
<div class="shadow center"></div>
<div class="pot-top center"><p style="color: white; text-align: center; font-family: 'Creepster', cursive; font-size:20px; margin-top:-5px;">Party's Brewing</p></div>
<div class="pot center"><p style="color: white; text-align: center; font-family: 'Creepster', cursive;">McVerry's<br>Annual Halloween Bash<br>October 26th<br>No RSVP Be there or Die</p></div>
<svg>
<defs>
<filter id="filter">
<feGaussianBlur in="SourceGraphic" stdDeviation="10" result="blur" />
<feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 17 -10" result="filter" />
<feBlend/>
</filter>
</defs>
</svg>
</body>
</html>