-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·62 lines (55 loc) · 2.01 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<html>
<head>
<title>Happy Birthday</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="loader">
<button id="play">Start</button>
</div>
</div>
</div>
<audio class="song" controls loop>
<source src="music.mp3">
</source>
Your browser isn't invited for super fun audio time.
</audio>
<canvas id="confetti"></canvas>
<div class="main">
<div class="container pt-5">
<div class="row">
<div class="col-12 col-xl-6 mx-auto">
<img src="img/banner.png" alt="">
</div>
<div class="col-12 text-center">
<div id="name" class="area">Mary🥀</div>
</div>
<div class="col-12 text-center">
<div class="type-wrap">
<div id="typed-strings" class="typing">
<h2>Happy Birthday <i id="nae">Mary</i></h2>
<h2>Have a wonderful day</h2>
<h2>Filled with joy and happiness.</h2>
</div>
<span id="typed" style="white-space:pre;"></span>
</div>
</div>
<div class="col-12 col-xl-3 cake">
<img src="img/cake.gif" alt="">
</div>
</div>
</div>
<img src="img/Balloon-Border.png" width="100%" class="balloon-border">
</div>
<div>made by <a href="http://github.com/cypher-me">Manu</a></div>
</body>
<script src="https://unpkg.com/magic-snowflakes/dist/snowflakes.min.js"></script>
<script src="js/jquery.js"></script>
<script src="js/typed.min.js"></script>
<script src="js/script.js"></script>
</html>