Design a site like this with WordPress.com
Get started

If you like the content on this blog, please make sure to subscribe. When you subscribe, you’ll get emailed each time I post here.

Latest posts

  • Rock, Paper, Scissors in HTML, CSS, and JavaScript

    Rock, Paper, Scissors in HTML, CSS, and JavaScript

    Rock, Paper, Scissors is a game in which two players make their hands ressemble a rock, paper, or scissors at the same time. The rules are simple: rock blunts scissors, paper smothers rock, and scissors cut paper. While the game is simple and easy to play in the real world, coding it in a high-level…

  • Stopwatch in HTML, CSS, and JavaScript

    Stopwatch in HTML, CSS, and JavaScript

    In the previous post, I showcased my improved timer application written in HTML, CSS, and JavaScript. Every second, the value of the seconds input box would be decreased by 1, and if it went into negative numbers, it would be reset to 59 and the minutes input box would be decreased by 1 and so…

  • Timer in HTML, CSS, and JavaScript (version 2.0)

    Timer in HTML, CSS, and JavaScript (version 2.0)

    After testing the timer from my previous post over a period of a few days, I have reached the unfortunate conclusion that the code was extremely overcomplicated, and also very buggy.