-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
40 lines (34 loc) · 880 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
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ritesh Poriya</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="fireworks" id="sec1">
<section class="content" id="sec2">
<h2>
Happy Diwali
<span>Wishing you a festival of lights.</span>
</h2>
</section>
<section class="content" id="sec5">
<h2>
<span class="name">Ritesh</span> Poriya
</h2>
</section>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="jquery.fireworks.js"></script>
<script type="text/javascript">
$('.fireworks').fireworks({
sound: true, // sound effect
opacity: 0.9,
width: '100%',
height: '100%'
});
</script>
</body>
</html>