-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Happy Birthday</title>
<link rel="stylesheet" href="./threeDanimation.css" type="text/css">
<link rel="icon" href="./image/iconmonstr-candy-18-240(1).png">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- adding door -->
<div class="door-container">
<div id="first"></div>
<div id="second"></div>
</div>
<div id="btn-div">
<p>
<br>
A very Happy Birthday to You. <br>
Just be the way You are! <br>
</p>
<button id="btn"></button>
</div>
<div id="top">
<h2>
<video id="vid" src="./video/paritcle.mp4" muted autoplay ></video>
<span>H</span>appy <span>B</span>irthday
</h2>
<div class="cube">
<div class="face1 faces"></div>
<div class="face2 faces"></div>
<div class="face3 faces"></div>
<div class="face4 faces"></div>
<div class="face5 faces"></div>
<div class="face6 faces"></div>
</div>
</div>
<!-- partial -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/css-doodle/0.5.1/css-doodle.min.js'></script>
<script >
var vdo = document.getElementById('vid');
vdo.pause();
setInterval(function() {
vdo.play()},3000);
</script>
<script src="./app.js"></script>
</body>
</html>