What Are the Different Types of Brochure?

Let’s discover the different brochure styles and learn how to tell the difference between a brochure vs. a flyer, leaflet, and pamphlet design. In this article, we’ll give you a better understanding of brochures by explaining: What is a brochure? What are the sizes of traditional brochure designs? What are brochures used for? What are… Continue reading What Are the Different Types of Brochure?

42 Best Webcam Borders for Twitch & Stream (Using a Twitch Border Maker)

Want to know how to make a Twitch border? Check out this tutorial, which will show you how to create a border for Twitch, as well as sharing 42 of the best Twitch border templates available at Placeit. Premium Twitch Border Maker From Placeit Placeit is an excellent source for finding the best Twitch border… Continue reading 42 Best Webcam Borders for Twitch & Stream (Using a Twitch Border Maker)

41 Best Bold Cursive Fonts (Bold Script, Calligraphy, and Tattoo Fonts to Download)

A bold cursive font can be a great attention-grabber. Check out this list of some of the best bold fonts, from bold calligraphy fonts to bold tattoo fonts, bold handwriting fonts, and big bold fonts with a retro feel. So, if you’re looking for some bold font inspiration, you are in the right place.  Bold… Continue reading 41 Best Bold Cursive Fonts (Bold Script, Calligraphy, and Tattoo Fonts to Download)

A Comprehensive Guide to Flexbox Sizing

Flexbox sizing makes it possible to create flexible layouts that fully adapt to the screen. If you set up everything correctly you won’t have to rely on media queries to support different viewports, layouts, and orientations. In this guide I’ll show you how to use the following flexbox sizing properties: flex-grow flex-shrink flex-basis flex  Explainer: Flexbox… Continue reading A Comprehensive Guide to Flexbox Sizing

Understanding PHP Constructors

In this article, we’re going to discuss the basics of constructors in PHP. You’ll learn the purpose of PHP constructors and how to use them. What Is a Constructor? Here’s the official definition: Constructors are ordinary methods which are called during the instantiation of their corresponding object. As such, they may define an arbitrary number… Continue reading Understanding PHP Constructors

How to Make a Babysitter Flyer Template (With Babysitting Flyer Ideas)

What You’ll Be Creating In the following tutorial, you will learn how to make a babysitter flyer template in Adobe Photoshop. We’ll start by creating a print-ready document. You’ll learn how to add images, vector shapes, or text, and how to easily align or stylize these elements. For the final touch, you’ll learn how to… Continue reading How to Make a Babysitter Flyer Template (With Babysitting Flyer Ideas)

How to Customize an HTML Template

So you’ve just purchased an HTML template and now you have to customize it before it goes online. But you’re not experienced with code so you’re not sure how to go about it. Well, rest easy, because in this tutorial we’re going to step you through how to edit a HTML template. We’re going to… Continue reading How to Customize an HTML Template

15+ Fonts Similar to Papyrus

What’s wrong with Papyrus font, what are some fonts like Papyrus, and how can we best use a Papyrus font style? What is Papyrus font, anyway? In this article, we’ll take a look at some fonts that look like Papyrus, and address some of the sentiment behind the question: why is Papyrus font bad? Spoiler alert: the reputation… Continue reading 15+ Fonts Similar to Papyrus

How to Parse JSON in PHP

JSON, short for JavaScript Object Notation, is a common lightweight format for storing and exchanging information. As the name suggests, it was initially derived from JavaScript but it is a language-independent format for storing information. A lot of languages like PHP now implement functions to read and create JSON data. This tutorial will teach you… Continue reading How to Parse JSON in PHP

A Comprehensive Guide to Flexbox Ordering & Reordering

The flexbox layout module allows us to lay out flex items in any order and direction. Flexbox ordering is, in fact, easier than ordering with floats or CSS grid, even if you might not think so at first. As flexbox is a one-dimensional layout model, as opposed to CSS grid which is two-dimensional, you only have… Continue reading A Comprehensive Guide to Flexbox Ordering & Reordering

How to Choose a Tattoo Font

What You’ll Be Creating Planning to get a lettering tattoo with some cool words and wondering how to choose a tattoo font? Or maybe you want to know more about lettering tattoo styles? Today, we’ll discover different lettering styles for your new tattoo and take a look at the best tattoo fonts available on Envato… Continue reading How to Choose a Tattoo Font

How to Change the Featured Image Size in WordPress

Featured images are usually one of the first things that visitors notice when checking out a WordPress blog. So it’s important that your images send the right signals to visitors.  It starts with choosing or creating eye-catching and relevant graphics for your posts. You also need to ensure that the images aren’t blurred, that parts… Continue reading How to Change the Featured Image Size in WordPress

How to Build a Simple REST API in PHP

In this tutorial, I’ll teach you how to build a simple REST API with PHP and MySQL. REST has become the de facto standard when it comes to exposing data via APIs and building web services. In fact, most web applications these days access and expose data via REST APIs. With the popularity of front-end… Continue reading How to Build a Simple REST API in PHP

Crash Course in the PHP Ternary Operator With Examples

In this article, we’ll discuss the ternary operator in PHP. Along with the syntax, we’ll go through a couple of real-world examples to understand how it works. What Is the Ternary Operator? The ternary operator (? and :) is a conditional operator which allows you to execute a condition, and based on the result of… Continue reading Crash Course in the PHP Ternary Operator With Examples

30 HTML Best Practices for Beginners

This tutorial is specifically for those who are just diving into web development. If you have one year of experience or less, hopefully some of the tips listed here will help you to become better, quicker! 1. Always Close Your Tags Back in the day, it wasn’t uncommon to see things like this: <li>Some text here.… Continue reading 30 HTML Best Practices for Beginners

20 Most Popular Sans Serif Fonts for 2021

Let’s take a look at some of the most popular sans serif fonts for 2021. What is a sans serif font? We’ll show you, with some inspiring sans serif font examples you can download now. So sit back, enjoy the type inspiration, and pick out the best sans serif fonts for your next design project. … Continue reading 20 Most Popular Sans Serif Fonts for 2021

A Comprehensive Guide to Flexbox Alignment

Alignment is probably the most confusing aspect of flexbox. The flexbox layout module has a handful of alignment properties that behave differently under different circumstances, and when using them you might not necessarily understand what is happening or why. However, if you know what to pay attention to, alignment is less complicated than it first… Continue reading A Comprehensive Guide to Flexbox Alignment

25+ Best Free Wedding Fonts (For Invitations, Signs, and More)

The right wedding font is indispensable for your wedding stationery and keepsakes. And when you are on a strict budget, finding the best fonts is critical.  That’s why today we are featuring the best affordable and free wedding fonts you can find at Envato Elements. Unlimited Wedding Fonts Downloads at Envato Elements We all can relate to… Continue reading 25+ Best Free Wedding Fonts (For Invitations, Signs, and More)

SVG Viewport and viewBox (For Complete Beginners)

In this quick SVG viewport and viewBox tutorial, we’re going to break down exactly what viewport and viewBox are in SVG for the web. You’ll learn: The difference between the viewport and viewBox The aspects of your SVGs you can control with each How they are each applied Let’s begin! SVG Viewport  If you literally… Continue reading SVG Viewport and viewBox (For Complete Beginners)

PHP round, ceil, and floor: Which One to Use?

A lot of programs, both big and small, require us to deal with numbers. There are two ways of defining numbers in PHP. They can either be floats or integers. We can also use strings to represent very large numbers. You can learn more about these data types and converting between them in this tutorial… Continue reading PHP round, ceil, and floor: Which One to Use?

25+ Best Free Sans Serif Fonts (Download Free Fonts)

Sans serif fonts have become the most prevalent type of font in contemporary usage, mostly because of their simplicity, clean lines, and legibility, particularly on computer screens. If you’re looking for the best sans serif fonts available today, check out this collection of the best free sans serif fonts as well as a selection of… Continue reading 25+ Best Free Sans Serif Fonts (Download Free Fonts)

13 Ways to Celebrate IDAHOBIT Online

IDAHOBIT is today! With some parts of the world opening up, you may be getting ready to celebrate this special day in the real world too. However, read on for our tips to fly the flag online.   What is IDAHOBIT? Every year, people across the world stand together to celebrate IDAHOBIT, which stands for the… Continue reading 13 Ways to Celebrate IDAHOBIT Online

Which Back-End to Choose? Node.js vs PHP

In this article, we’re going to discuss PHP and Node.js: two popular back-end technologies for web applications. We’ll discuss the key differences between them to help you choose the right back-end technology for your next project. Introduction First of all, let’s go through what exactly these two back-end technologies are and what they are used… Continue reading Which Back-End to Choose? Node.js vs PHP