lyraxis-notification 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/sound.mp3 +0 -0
- package/index.html +34 -0
- package/package.json +11 -0
- package/script.js +1010 -0
- package/style.css +915 -0
- package/test.html +216 -0
package/assets/sound.mp3
ADDED
|
Binary file
|
package/index.html
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="id">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<meta name="robots" content="index, follow" />
|
|
7
|
+
<meta name="theme-color" content="#627254" />
|
|
8
|
+
<meta name="keywords" content="Belum tau, Mimin belum tau, Halaman utama, Belum tau utama, Belum tau my id" />
|
|
9
|
+
<meta name="description" content="Fakta unik dan ilmu baru yang jarang diketahui banyak orang, disajikan dari sumber terpercaya untuk menambah wawasanmu." />
|
|
10
|
+
|
|
11
|
+
<meta property="og:title" content="Belum tau - Gali Ilmu–mu disini!" />
|
|
12
|
+
<meta property="og:description" content="Ga paham? Yuk sini mimin Belum tau." />
|
|
13
|
+
<meta property="og:image" content="https://belumtau.com/upload/image/preview-image.png" />
|
|
14
|
+
<meta property="og:url" content="https://belumtau.com" />
|
|
15
|
+
<meta property="og:type" content="website" />
|
|
16
|
+
|
|
17
|
+
<meta name="twitter:card" content="summary_large_image" />
|
|
18
|
+
<meta name="twitter:title" content="Belum tau - Home" />
|
|
19
|
+
<meta name="twitter:description" content="Ga paham? Yuk sini mimin Belum tau." />
|
|
20
|
+
<meta name="twitter:image" content="https://belumtau.com/upload/image/preview-image.png" />
|
|
21
|
+
<meta name="twitter:url" content="https://belumtau.com" />
|
|
22
|
+
<meta name="twitter:site" content="@KeztOfficial" />
|
|
23
|
+
|
|
24
|
+
<link rel="shortcut icon" href="https://belumtau.com/upload/image/main.png" type="image/x-icon" />
|
|
25
|
+
<link rel="stylesheet" href="../styles.css" type="text/css" />
|
|
26
|
+
<title>Lyraxis | Library Notification</title>
|
|
27
|
+
|
|
28
|
+
</head>
|
|
29
|
+
<body>
|
|
30
|
+
<script src="../main.js"></script>
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
</body>
|
|
34
|
+
</html>
|
package/package.json
ADDED