-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.33 KB
/
Copy pathindex.html
File metadata and controls
37 lines (35 loc) · 1.33 KB
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>Happy New Year 2025</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="HappyNewYear">
<meta name="author" content="Vien Nguyen">
<link rel="apple-touch-icon" sizes="180x180" href="https://www.congcuweb.net/webmaster/favicon/cache/android-chrome-192x192.ico">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.congcuweb.net/webmaster/favicon/cache/android-chrome-192x192.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.congcuweb.net/webmaster/favicon/cache/android-chrome-192x192.ico">
<link rel="manifest" href="site.webmanifest">
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="jquery.fireworks.js"></script>
</head>
<body>
<section>
<div class="box">
<div class="circle">
<h2>Happy<br>New Year 2025</h2>
</div>
</div>
</section>
<div class="fireworks"></div>
<script>
$('.fireworks').fireworks({
sound: true, // sound effect
opacity: 0.9,
width: '100%',
height: '100%'
});
</script>
</body>
</html>