Mastering Calligraphy: How to Write in Gothic Script

In this “Mastering Calligraphy” lesson, we’ll be learning what is by far the hardest font but also the most impressive: Gothic Script. This font is a bit different than the others because it’s made up of so many small strokes. However, the letters are very similar in construction so once you have a few down,… Continue reading Mastering Calligraphy: How to Write in Gothic Script

44 Best Procreate Fonts (Calligraphy, Tattoo, Comic, and More!)

Looking to download fonts for Procreate? In this article, we’ll take a look at some awesome font choices for Procreate, as well as how to add fonts to Procreate, if you’ve never done it before. Add fonts to Procreate and use them in your next design, illustration, or project. If you love calligraphy fonts Procreate… Continue reading 44 Best Procreate Fonts (Calligraphy, Tattoo, Comic, and More!)

How to Animate on Scroll With Vanilla JavaScript

Making elements appear based on their scroll position is a very popular design choice when building web pages but it usually involves using a plugin or library. In this tutorial you’ll learn how to implement animation on scroll using vanilla JavaScript and CSS. The main advantage of using a custom implementation (as opposed to a… Continue reading How to Animate on Scroll With Vanilla JavaScript

Mastering Calligraphy: How to Write in Cursive Script

In this lesson of “Mastering Calligraphy”, we’re going to learn how to write in cursive script. Flowing, cursive calligraphy is still seen today on wedding invitations and menus at fancy restaurants. While it looks extremely difficult to ink, it’s actually made of a few basic strokes. Better yet, with the Cursive Script, you hardly ever… Continue reading Mastering Calligraphy: How to Write in Cursive Script

CSS Charts: How to Create a Horizontal Organizational Chart

In a previous tutorial, we learned how to create a CSS-only vertical organizational chart. Today, as some folks requested, we’ll go through the process of building its corresponding horizontal one.  CSS CSS Charts: How to Create an Organizational Chart George Martsoukos And here’s the twist; we’ll create this new chart without changing a single line… Continue reading CSS Charts: How to Create a Horizontal Organizational Chart

How to Make a Propaganda Poster

What You’ll Be Creating In this tutorial, you’ll learn how to make your own propaganda poster in Photoshop, using a vintage propaganda style and giving it a contemporary twist for International Women’s Day. Suitable for Photoshop beginners, this tutorial is a great way to learn more about poster design and discover how to create a… Continue reading How to Make a Propaganda Poster

How to Do Calligraphy on Procreate

What You’ll Be Creating Curious about how to do calligraphy on Procreate? In this tutorial, we’ll look at settings, techniques, and brushes that can help you create beautiful calligraphy styled writing and hand lettering in Procreate.  What You’ll Need You’ll need Procreate for iPad for this tutorial. It is recommended that you also use an Apple… Continue reading How to Do Calligraphy on Procreate

Mastering Calligraphy: How to Write in Roundhand Script

For our first tutorial in “Mastering Calligraphy”, we’re going to start with an easy alphabet that uses the two basic strokes we learned in the easy introduction. Just those two strokes make up a majority of the letters in the Roundhand Script alphabet. We’ll be breaking the letters into similar groups and mastering both the… Continue reading Mastering Calligraphy: How to Write in Roundhand Script

How to Check if a String Contains Another Substring in PHP

A lot of times when I am working with strings in PHP, it becomes important to check if a string contains another substring. PHP has a lot of functions to help you manipulate strings any way you like. We will be using some of these functions today to learn how to check if a string… Continue reading How to Check if a String Contains Another Substring in PHP

Example of How to Add Google reCAPTCHA v3 to a PHP Form

In this article, I’m going show you how to add Google reCAPTCHA v3 to a form on your PHP website. The latest reCAPTCHA is different than the previous versions—it doesn’t require user interaction at all. In this post, we’ll see how it works, and we’ll build a real-world example for demonstration purposes. As a website… Continue reading Example of How to Add Google reCAPTCHA v3 to a PHP Form

How to Convert Bootstrap Pills (Tabs) Into a Dropdown Menu

In the past, we’ve discussed various Bootstrap 4 extensions. Today I’ll show you how to convert Bootstrap pills (tabs) into a dropdown. Most importantly we’ll keep both these components in sync. We’ll use pills for the desktop layout and a dropdown for mobile screens. Note: for this exercise, I’m going to use Bootstrap 4 latest… Continue reading How to Convert Bootstrap Pills (Tabs) Into a Dropdown Menu

Working With Tables in React: Part Two

In this two-part series, you will learn about the ins and outs of working with tabular data in React using the React Bootstrap Table2 component. You’ll be able to create sophisticated and professional-looking tables with little effort and yet be able to customize every aspect. In this part, we’ll continue the journey by expanding rows,… Continue reading Working With Tables in React: Part Two

How to Make a Live Chat Script in PHP

In this article, we’ll discuss how you can make a live chat script in PHP. Although there are different ways you could achieve this, we’ll use a socket-based implementation. If you’re building a community site which involves user engagement, it’s useful to provide a way for users to discuss ideas in real time. When it… Continue reading How to Make a Live Chat Script in PHP

10 Best PHP Chat Scripts on CodeCanyon

Do you want to provide real time, instant solution to your customers most pressing problems?  Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your customers. Live chats also allow users in an online community to chat with each other in real… Continue reading 10 Best PHP Chat Scripts on CodeCanyon

43 Best Botanical Illustrations: Drawing and Painting Inspiration

Bring a refreshing touch of nature to your designs with these awesome botanical illustrations.  Just one of the beautiful plant illustrations we’ll be looking at today Today we will share 43 of the loveliest botanical drawings to be found at Envato Elements, Placeit, and GraphicRiver. Take a look and download your favourites to keep in… Continue reading 43 Best Botanical Illustrations: Drawing and Painting Inspiration

42 Best Web Fonts (Ready to Download and Use)

Looking for cool fonts for web design or some new web fonts to use on your website? In this article, we’ll take a look at some serif web fonts, sans serif web fonts, and other stylish fonts you can use on your website today. Whether you’re looking for the best web body fonts or some… Continue reading 42 Best Web Fonts (Ready to Download and Use)

32 Best Custom Beer Bottle Labels (Using a Beer Bottle Label Maker)

Craft beer and microbreweries have exploded on the scene in recent years, and with them has grown the need for cool and unique beer bottle labels that match the contents inside the bottle.  Just one of the cool custom beer labels you will find at Placeit.net If you’re launching or relaunching your own craft beer… Continue reading 32 Best Custom Beer Bottle Labels (Using a Beer Bottle Label Maker)

11 Best PHP Blog Scripts and Blogging Platforms

Are you looking to start an independent blog or add a business blog to your website? Blogs are the most reliable means of growing a business and boosting revenue. They are the best way of letting visitors know what your business is about. In addition to help you generate leads, blogs build trust in existing… Continue reading 11 Best PHP Blog Scripts and Blogging Platforms

38 Best Fantasy Fonts to Download (Great for Book Covers and More!)

If you’ve written an amazing fantasy novel or created a fabulous fantasy flick, then you’re going to need the right graphics to call attention to your masterpiece.  Check out our list of the 38 Best Fantasy Fonts for download Today we’re featuring the 38 best fantasy fonts to be found at Envato Elements and GraphicRiver. Check… Continue reading 38 Best Fantasy Fonts to Download (Great for Book Covers and More!)

Functions in PHP: Return Values and Parameters

Functions are an important part of programming languages. They help us avoid code duplication by allowing us to run the same set of instructions over and over again on different data. In this tutorial, we will talk about functions in PHP. We will cover all the basic concepts of functions in PHP, and you’ll learn… Continue reading Functions in PHP: Return Values and Parameters

How to Work With Cookies in PHP

You might have heard about cookies, but what exactly are they and what can we actually do with them? In this tutorial, we will focus on the basics of cookies, and learn about their functionality in various web applications and site environments. We will also learn how to work with cookies in PHP. Cookies vs… Continue reading How to Work With Cookies in PHP