Okay, so check it, I was messing around the other day and thought, “Hey, why not make a countdown timer for Solo Leveling?” Sounded like a fun little project, right?
First off, I started by scoping out the release date. Google is your friend, you know? Got that nailed down, then jumped straight into coding. I decided to use JavaScript ’cause it’s quick and dirty for this kind of thing. I fired up my trusty VS Code and got to work.
Setting up the HTML was the first step. Just a basic page with a div to hold the timer. Gave it an ID so I could grab it with JavaScript later. Nothing fancy, just the bare bones, you feel me?
- Created an * file.
- Added a div with the id “countdown”.
Then came the fun part: the JavaScript. I grabbed the div element, calculated the time difference between now and the release date, and then updated the HTML with the days, hours, minutes, and seconds. I used `setInterval` to make it tick every second. It was kinda satisfying seeing those numbers change, ngl.
- Got the current date and the target release date.
- Calculated the difference in milliseconds.
- Converted milliseconds to days, hours, minutes, and seconds.
- Updated the HTML with the formatted time.
Styling? Yeah, a little bit. Threw in some basic CSS to make it look halfway decent. Font size, colors, you know the drill. Nothing too crazy, just enough so it wasn’t an eyesore.
After that, I tested it out. Made sure the numbers were counting down correctly. Found a couple of bugs, fixed ’em up. It’s always something, right?

Finally, I deployed it to Netlify. It’s free and easy, perfect for small projects like this. And boom, a Solo Leveling countdown timer was born!
It’s a simple project, yeah, but it was a good way to kill some time and practice my JavaScript. Plus, now I have a handy timer to remind me when the good stuff drops. Not bad for a day’s work, eh?