diff --git a/UI Snippets/Helpline/index.html b/UI Snippets/Helpline/index.html
new file mode 100644
index 0000000..0476d51
--- /dev/null
+++ b/UI Snippets/Helpline/index.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+ Helpline Image
+
+
+
+
+
diff --git a/UI Snippets/Helpline/style.css b/UI Snippets/Helpline/style.css
new file mode 100644
index 0000000..22d1571
--- /dev/null
+++ b/UI Snippets/Helpline/style.css
@@ -0,0 +1,14 @@
+/* Apply styles to the body */
+body {
+ background-color:black;
+}
+
+/* Style the image */
+img {
+ max-width: 100%;
+ height: auto;
+ margin: 20px auto;
+ display: block;
+ border: 2px solid #333;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
+}
diff --git a/UI Snippets/music/music.html b/UI Snippets/music/music.html
new file mode 100644
index 0000000..e93158d
--- /dev/null
+++ b/UI Snippets/music/music.html
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+

+
+
+
diff --git a/UI Snippets/music/style.css b/UI Snippets/music/style.css
new file mode 100644
index 0000000..bebeded
--- /dev/null
+++ b/UI Snippets/music/style.css
@@ -0,0 +1,55 @@
+body {
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+}
+
+.music-image-container {
+ animation: moveMusicImage 2s ease-in-out infinite;
+}
+
+.music-image {
+ width: 100%;
+ height: 100%;
+}
+
+@keyframes moveMusicImage {
+ 0%, 100% {
+ transform: translateY(0);
+ }
+ 50% {
+ transform: translateY(-20px);
+ }
+}
+@keyframes moveMusicImage {
+ 0%, 100% {
+ transform: translateY(0);
+ opacity: 1;
+ }
+ 25%, 75% {
+ transform: translateY(20px);
+ opacity: 5;
+ }
+ 50% {
+ transform: translateY(40px);
+ opacity: 5;
+ }
+}
+@keyframes moveMusicImage {
+ 0%, 100% {
+ transform: translateY(0) scale(1);
+ opacity: 1;
+ }
+ 25%, 75% {
+ transform: translateY(-20px) scale(1.1);
+ opacity: 0.5;
+ }
+ 50% {
+ transform: translateY(-40px) scale(1);
+ opacity: 0;
+ }
+}
diff --git a/passgenerator/passwordgenerator.html b/passgenerator/passwordgenerator.html
new file mode 100644
index 0000000..2a929df
--- /dev/null
+++ b/passgenerator/passwordgenerator.html
@@ -0,0 +1,116 @@
+
+
+
+
+
+ Password Generator
+
+
+
+
+
Password Generator
+
+
+
+
+
+
+
+
+
+
+
diff --git a/snippets.json b/snippets.json
index 0ebff45..69f8a6c 100644
--- a/snippets.json
+++ b/snippets.json
@@ -103,5 +103,19 @@
"image-link": "https://github.com/Deveesh-Shetty/CSS-Is-Fun/assets/89470104/61b32539-f2d0-4c29-800f-03657d5af192",
"folder-link": "https://github.com/Deveesh-Shetty/CSS-Is-Fun/tree/master/UI%20Snippets/Session%20Graph",
"author": "Meet Thakur"
+ },
+ {
+ "name": "Helpline",
+ "codepen-link": "https://codepen.io/Swathi-Singh/pen/dywjqoz",
+ "image-link": "https://wpassets.adda247.com/wp-content/uploads/multisite/sites/5/2020/04/11132345/Helpline.jpg",
+ "folder-link": "https://github.com/Swathi1203/CSS-Is-Fun/tree/add-new-tablecontent/UI%20Snippets/Helpline",
+ "author": "Deveesh-Shetty"
+ },
+ {
+ "name": "Music",
+ "codepen-link": "https://codepen.io/Swathi-Singh/pen/QWYjvvB",
+ "image-link": "https://img.freepik.com/premium-photo/concept-eternal-theme-about-eternity-music-musical-instruments-good-mood-ascended-aspiration-action-treble-clef-sheet-music_771426-4115.jpg" ,
+ "folder-link": "https://github.com/Swathi1203/CSS-Is-Fun/tree/add-new-tablecontent/UI%20Snippets/music",
+ "author": "Deveesh-Shetty"
}
]