Get your nagging questions on HTML and CSS answered through articles and
tutorials.
15 Oct 2022
Have you been researching about creating websites? You might have come across Bootstrap. So, what is Bootstrap and how can you use it to create websites?
Bootstrap is tool used in creating respo...
Read more
08 Oct 2022
Static websites are websites that takes web pages stored on a server and deliver them to the web browsers without any alterations. A static website will always server the same files to all the user...
Read more
01 Oct 2022
Google Sites is a free and straightforward website builder used to create business, portfolio, and private websites.
Google Sites What Is It
Google sites is a website builder owned by Google. It...
Read more
01 Oct 2022
You can Host a website on google. Google has 3 services that can be used to host a website.
Google has a wesite builder called Google sites, blogging platform called Blogger, a website applicatio...
Read more
24 Sep 2022
You can successfully host your own website if you want to.
Countless individuals and organisations have done it.
It is not very difficult to do it if you know what you are doing.
So, how can you...
Read more
17 Sep 2022
Yes you can host your website on your own computer.
The website hosted on your computer will be viewable by anyone on your computer.
However, it will not be available on the internet.
Still, you...
Read more
10 Sep 2022
You can host your website for free.
The easiest method to host a website for free is to use a free website hosting service.
Infact, there is a huge number of free website hosting services. All yo...
Read more
03 Sep 2022
You can use Vite to create a React project.
Vite is a build tool that is gaining some popularity in the web development space.
With Vite, you can create frontend project in React, Vue, Preact, Sv...
Read more
27 Aug 2022
If you have tried using Redux with React and you are finding it hard to learn. This tutorial is for you.
In this tutorial, we are not going to take advantage of Redux toolkit. I want to keep the...
Read more
20 Aug 2022
Redux is a Javascript library for creating, managing and accessing state across an application in a predictable way.
Redux creates a store with a state that is available across all the components ...
Read more
13 Aug 2022
The most recommended way to create a React app is to use npm.
To create a react project using npm, you only need to have Node version 14 or greater.
If you don’t Node js on your computer, follow ...
Read more
06 Aug 2022
Since we can now connect to the database, lets proceed to saving data in the database.
First, add the database name you intend to use to your URL. If your current URL is:
const uri = "mongodb+srv...
Read more
30 Jul 2022
You need a database driver to access a MongoDB database. In our project, we are going t use Mongoose. There are other options like native MongoDB driver.
You first need to install Mongoose in you ...
Read more
23 Jul 2022
Express or Express.js is a web framework that runs on Node.js. It provides a set of tools that you need when creating a web server.
Installing Express Locally
You should already have Node.js alrea...
Read more
16 Jul 2022
HTML Tag List
HTML Element Name
HTML Tag
a
<a href=""></a>
abbr
<abbr></abbr>
ad...
Read more
09 Jul 2022
A static site generator(SSG) is an application that creates complete websites from templates and data content.
The content is usually written in Markdown, HTML or other templating languages and sa...
Read more
02 Jul 2022
To check if a variable is undefined in Javascript you can use the typeof operator or just the variable itself. For an undefined variable, the variable will return undefined. The typeof operator wil...
Read more
25 Jun 2022
What is Local Variable in Javascript
Local variables are variables that can only be accessed within the function or block statement that they have been declared in. Block statements include if, if ...
Read more
18 Jun 2022
You use the typeof operator in Javascript to check if a variable is a string. The typeof operator returns a value of string when the variable is a string.
Simple String Check Example in Javascri...
Read more
11 Jun 2022
You can only use Javascript variable in HTML by linking the Javascript variable to a HTML element using an id or class attribute.
Linking Javascript Variable to HTML Element
Create an element ...
Read more
04 Jun 2022
What is a Variable in Javascript
A variable is a container for storing data. You use variables because you can:
you can get the information stored by the variable. In your mind, you can forget ...
Read more
28 May 2022
You can make the background color of a div transparent using CSS color values with transparency(rgba() and hsla()) or using opacity property.
Make Background Color Transparent
Start by creating ...
Read more
21 May 2022
Adding a background image to your website can help capture your website visitors attention.
A background picture also focuses the attention of the readers to the text appearing ontop the image.
...
Read more
14 May 2022
You can stick the footer to the bottom of the screen(viewport) with both Bootstrap 4 and 5.
But what exactly is a sticky footer?
A sticky footer “sticks” to the bottom of the viewport in cases...
Read more
07 May 2022
You can check if checkbox is checked or not in Javascript by using the checked property of the checkbox.
Start by creating a checkbox element in HTML.
<label for="legal-terms">
<inpu...
Read more