Detect whether Internet speed is Fast or Slow using JavaScript
In this article, we are providing you with a code snippet which you can include in any webpage where you want to display internet speed whether it is slow or fast. This feature can be useful if you webpage contains some element that needs a better…
Design Full Page Overlay Advertisement using HTML, CSS and JavaScript
Most of the websites nowadays are attracted to full page overlay ads for promoting third party as well as their own content in the websites. In this article, we have a code snippet which you can include in any webpage where you want to display the…
Remove index.php from Codeigniter using htaccess
In CodeIgniter project the index.php file will be included in your URLs by default. However, we would want to remove index.php from our URL to make it look clean as well as make it SEO friendly. We can achieve this with following 2 simple steps : Step 1:…
Design Simple yet Pretty Login Form for Admin Panel
Designing an attractive and pretty looking Login Page wouldn’t be a thing to bother for a professional designer. However, non designers ( perhaps programmers), are always looking for a template for these HTML designs. Most of the templates or…
Create Page Scroll Indicator in 2 simple steps
Scroll Indicator is basically a line which fills up based on how much the user has scrolled in the page. They are usually positioned at the Top of the page but can differ based on the design and requirement. In this post, we will be implementing Scroll…
Implement World Map using jVectorMap
jVectorMap uses only native browser technologies like JavaScript, CSS, HTML, SVG or VML. No Flash or any other proprietary browser plug-in is required. This allows jVectorMap to work in all modern mobile browsers. Many maps of the world, world regions,…
How to create Go To Top button in a Webpage ?
In this article we will be learning to create a Go To Top Button in our webpage. We will show a Go To Top button in our webpage if user is not in the top. On clicking the button, the user will be taken to the top of the webpage with smooth animation.…
Hangman Game in PHP : Complete Source Code
Hangman is a paper and pencil guessing game for two or more players. One player thinks of a word, phrase or sentence and the other(s) tries to guess it by suggesting letters within a certain number of guesses. Complete Source Code config.php <?php…
How to run a Linux command in background ?
Running a command in the background can be useful when the command will run for a long time and does not need supervision. It leaves the screen free so you can use it for other work. In addition, it doesn’t stop the next processes or commands in…
How to detect AdBlocker using JavaScript ?
Ad blocking or ad filtering is a software capability for removing or altering online advertising in a web browser or an application. An ad blocker is a program that will remove different kinds of advertising from a Web user’s experience online.…
Speech to Text Conversion using JavaScript
In this article, we will be implementing a basic web application for speech to text conversion using JavaScript. Speech Recognition Speech recognition is a feature that gives us the ability to perform tasks using our spoken words as input. Speech…
Multiple File Upload with HTML and PHP
We might have been in situation where we need to upload multiple files from a form. If you are in same situation, then you are in right place for the solution. In this article, we are going to learn to upload multiple files with HTML and PHP. HTML…
Password Protect Website using .htaccess file
htaccess password protection can be very useful sometimes when we want only authorized users to access a certain webpage. This can be achieved easily by creating two files : .htaccess .htpassword You can create the username password file from this link :…
Install Laravel on Ubuntu with 4 simple steps
If you are looking to start your journey of Laravel, then this article is for you. You will learn to install Laravel one of the most popular PHP Framework currenly in Ubuntu Operating System. The OS I am using is Ubuntu 18.04 and we will be installing…
Use Multiple Google Maps in same webpage
In this article, we will be learning to use multiple Google Maps in a single webpage. We will be taking the help of Google Maps JavaScript API in order to load multiple instances of google maps in our page. HTML For displaying multiple maps, you need…