Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added a new dark Mode with extra perfection #16

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 53 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,53 @@
# mini-player
# Music Player

This is a simple music player created with HTML, CSS, and JavaScript and some use of JSON(i guess!) .

## Features

- Plays audio files in MP3 and WAV formats
- Provides basic controls such as play, pause, next, previous, and volume adjustment
- Displays the current song title and artist
- Shows the album artwork for the current song
- Allows users to add songs to the playlist

## Getting Started

1. Clone the repository to your local machine.
2. Open `index.html` in your web browser.
3. Use the "Add Song" button to add songs to the playlist.
4. Use the controls at the bottom of the player to play, pause, and adjust the volume of the audio.

## Project Structure

```
music.player/
├── css/
│ ├── style.css
├── img/
│ ├── img1.jpg
│ ├── img2.jpg
│ ├── img3.jpg
│ ├── img4.jpg
├── js/
│ ├── script.js
├── songs/
│ ├── song1.mp3
│ ├── song2.mp3
│ ├── song3.mp3
├── index.html
├── README.md
```

The project contains four main folders:

- `css`: Contains the CSS file for styling the music player.
- `img`: Contains the album artwork images used in the player.
- `js`: Contains the JavaScript file for controlling the player and handling user interactions.
- `songs`: Contains the audio files that can be played in the player.

## Technologies Used

- HTML
- CSS
- JavaScript

Loading