Whether you need an admin dashboard for e-commerce, school management, hospital management, job portal, or any other business, this will be the perfect tutorial to learn how to start making one. You will also be able to download the complete source code. This is a live demo of the final product: Admin Dashboard Here is …
JS
Vanilla JavaScript modal
People tend to use bootstrap or a similar library or framework for simple stuff like modals and give some additional weight to the unnecessary web pages. I will show you today how is simple to make a modal using HTML, CSS, and vanilla JS. 1. So let’s begin with the HTML: <!DOCTYPE html> …
Let’s make a progress bar
Take a look at what we gonna build today: a progress bar. You can download a source code from here: https://github.com/brilex/progress-bar or you can download it from here: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Document</title> </head> <style> #progress-bar …