├── README.md └── conter ├── img └── bg.png ├── index.html ├── scripts.js └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # JavaScript-Counter 2 | Lets create a JavaScript counter with HTML, CSS and JavaScript. It a fun project and you will able to increment, decrement as well as reset the number. 3 | 4 | 5 | ## 📝 Description 6 | Lets create a JavaScript counter with HTML, CSS and JavaScript. It a fun project and you will able to increment, decrement as well as reset the number. 7 | 8 | 9 | 10 | ## 🥰 App screenshot 11 |  12 | 13 | 14 | ## 🥰 Follow me 15 | - [@Github](https://github.com/shovoalways/) 16 | - [@Facebook](https://facebook.com/shovoalways/) 17 | - [@Twitter](https://twitter.com/shovoalways/) 18 | - [@Instagram](https://instagram.com/shovoalways/) 19 | -------------------------------------------------------------------------------- /conter/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shovoalways/JavaScript-Counter/b7ad5938a69be601134a6a5910ecfe9e6a3e467b/conter/img/bg.png -------------------------------------------------------------------------------- /conter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |