Creating a navbar with HTML and CSS
This tutorial explains how to add a horizontal navigation bar (menu) with buttons to a webpage using HTML and CSS code. The menu will look like the one shown below (with …
This tutorial explains how to add a horizontal navigation bar (menu) with buttons to a webpage using HTML and CSS code. The menu will look like the one shown below (with …
One effect you might like to use is a text-shadow or glow effect using the text-shadow property in CSS. The text-shadow property has four different attributes separated by spaces: The first attribute is …
You aren’t just limited to using web-safe fonts such as Times or Arial on your web pages. You can choose from a range of fonts available online or even make your …
This tutorial explains how to use built-in Python functions and modules as well as how to create and use your own functions.
This tutorial explains how to use for loops in Python. For loops can be used to repeat a set of instructions a specific number of times. However, a for loop is much more useful when …
This tutorial explains how to create a stop-motion video using imported photos in Adobe Premiere Pro CC. Here is a summary of the steps involved: Create new project. Drag your …
This tutorial will show you how to control an LED light on an Arduino using a mobile app and a Bluetooth wireless connection. Parts required Here is what you’ll need: …
A method, also known as a function, is a module of code that a programmer can create and then call on later on in the program. Many methods already exist in programming …
This tutorial explains how to use the foreach loop to go through each element in an array. A foreach loop is simpler and easier to use than a for loop …
Arrays are basically a list of items of the same type that are grouped together in a single container. Unlike variables which can only contain one value at a time, …
A do while loop is a type of loop which repeats code while a certain condition evaluates to true. However, unlike a while loop which tests the condition first, a …
In this tutorial you will learn how to use the for loop to repeat sections of code in the C# language. For loops are useful for when you want to …
This tutorial explains how to write switch statements in C# language. Switch statements are used to select one from many different blocks of code. A switch statement can take a …
This tutorial continues on from the previous tutorial on adding collectables and scoring to a 2D Unity game. In the previous tutorial, we improved the points scoring system and added …
This video explains how to use Physics2D materials in Unity to add properties such as bounciness or friction to objects in your 2D game scene. We will also look at …