There are a lot of different ways to use SEO to get website traffic. You can use SEO to improve your website’s ranking in search engines, which will result in more people finding your site. You can also use SEO to create informative and keyword-rich content, which will attract readers and potential customers. For every …
Blog
Common Application Security Problems
Whilst a growing number of businesses are mindful of the need for program security, few are handling the issue in an effective manner. In a survey of over 640 IT professionals, seven crucial issues were repeatedly identified as recurrent barriers to successful application security. Resolving these issues will help your organization improve developer security understanding, …
Protect yourself against spam emails – wordpress
You have built a website using WordPress, including a contact form. You expected that your customers would contact you to do some business, but that hasn’t happened. You got a ton of spamming emails instead. There needs to be a way to protect against that. Luckily there is a free solution for the problem, which …
You cannot delete the plugin as long as it is active on the main page.
I recently have working on a website where I updated plugins and delete some that client doesn’t need. At least I have tried, but I got some strange error. “You cannot delete the plugin as long as it is active on the main page”. After some time I have found that the W3 Total Cache …
The easiest way to transfer your wordpress website from one hosting to another
So your hosting is bad, it is down all the time or maybe there is another reason why you want to transfer your WordPress website to another hosting. You probably think that the process of migration of the website is hard and take a lot of time, but you are wrong. In this post, I …
Let’s create an Admin Dashboard using HTML, CSS, Bootstrap 5 and JavaScript
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 …
Reduce the number of HTTP requests by using CSS sprites
In this article, we will explain how to reduce the number of HTTP requests by using CSS sprites. This is an easy-to-implement method, but there is one downfall. You shouldn’t do this if the images or the icons are essential for SEO purposes. First, let’s test our website for the number of HTTP requests: Go …
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 …
How to make a booking form using html and css
Today I will show you have to make this booking form using HTML and CSS. This will not be a long tutorial so stick with me. I have added the video underneath if you rather want to watch a video then a written tutorial. You can download source code from the bottom of the website. First, …