Collective #393

Original Source: http://feedproxy.google.com/~r/tympanus/~3/eanvVa5q1N8/

C393_devx

Devx Experiments

As part of the Digital Design Days, the Devx Experiments showcase some great WebGL work.

Check it out

C393_Sponsor

Our Sponsor
Over 70,000 small businesses & freelancers use Paymo

This project management app takes away the pain of planning, scheduling, task management, time tracking, and invoicing.

Check it out

C393_30css

30 Seconds of CSS

A curated collection of useful CSS snippets you can understand in 30 seconds or less.

Check it out

C393_jellymario

Jelly Mario

Stefan Hedman puts Mario into a gelatinous Mushroom Kingdom. So much more fun!

Play it

C393_webpack4

Webpack 4

Read all about the new webpack 4 (Legato) version in this article by Sean T. Larkin.

Read it

C393_midi

Neural Arpeggiator

Tero Parviainen’s amazing deep learning experiment: Let a deep neural network play an arpeggiated pattern around your chord.

Check it out

C393_svgdate

This SVG always shows today’s date

Terence Eden created this SVG that dynamically shows the current date.

Check it out

C393_Photomosh

PhotoMosh

An image glitching app with tons of options to create unique effects.

Check it out

C393_Blackchurch

Free Font: BlackChurch

A great display font designed by Yann Conan.

Get it

C393_ampemail

On AMP for Email

Jason Rodriguez shares his thoughts on Google’s announcement about adding dynamic content and interactivity to Gmail with AMP for email.

Read it

C393_titles

The Truth About Design Titles

Tobias Van Schneider humorously translates all the fancy design titles for us.

Check it out

C393_halftone

Pure CSS Halftone Effect

A brilliant experiment with CSS filters, gradients and blend modes. By Marco Buono.

Check it out

C393_tipsdesign

7 Practical Tips for Cheating at Design

Some really useful advice for better UI design by Adam Wathan and Steve Schoger.

Read it

C393_graphtheory

How to think in graphs: An illustrative introduction to Graph Theory and its applications

Vardan Grigoryan explains Graph Theory in an easy to understand way in this brilliant guide.

Read it

C393_frontend

Frontend Case Studies

A curated list of technical talks and articles about real-world enterprise frontend development. By Andrew Romanov.

Check it out

C393_cssdebugging

Custom properties for breakpoint debugging

Emil Björklund’s smart CSS debugging trick combined from various solutions.

Read it

C393_variables2

Want to learn CSS Variables? Here’s my free 8-part course!

Per Harald Borgen has created a free course on CSS Variables at Scrimba to help you get started.

Read it

C393_html

Requests-HTML: HTML Parsing for Humans

A library that intends to make parsing HTML when scraping web content as simple and intuitive as possible.

Check it out

C393_gifski

Gifski

Gifski is a macOS app for the gifski encoder, which converts videos to GIF animations.

Check it out

C393_svgburger

Would you like fries with that?

Tiffany Choong’s demo where you can build your own SVG burger 🙂

Check it out

C393_arber

Free Font: Arber Vintage

A distressed vintage font designed by Krisjanis Mezulis.

Get it

C393_amp

AMP: the missing controversy

From earlier this month but quite an interesting read: Ferdy Christant explains how Google cheats with performance.

Read it

C393_FragmentSlideshow

From Our Blog
Animated Fragment Slideshow

A tutorial on how to create an experimental slideshow that animates in fragments. The slider is powered by the “Pieces” library, which was created for achieving interesting effects like these easily.

Check it out

Collective #393 was written by Pedro Botelho and published on Codrops.

Bootstrap Native: Using Bootstrap Components without jQuery

Original Source: https://www.sitepoint.com/use-bootstrap-components-without-jquery/

Do you use Bootstrap’s JavaScript components? Do you like Vanilla JavaScript? Then you might be interested in the Native JavaScript for Bootstrap project (Bootstrap Native), which aims to remove the jQuery dependency required by the components by porting them to plain JavaScript.

Why use Bootstrap Native?

The motivations of such a port are mostly related to performance.

One benefit is the potential performance gain that can come from the superior execution speed of plain JavaScript over jQuery, as reported in many benchmarks.

Another performance advantage is the reduced page weight. Let’s make a quick comparison. All the numbers below refer to minified gzipped files and are expressed in KBs. bootstrap.js refers to the original Bootstrap scripts, bsn.js to the Bootstrap Native scripts, and jq to jQuery. Here we’re looking at the bundled files that gather together all the components, but it should be noted that both libraries have a modular structure that allows the loading of only the needed components and their dependencies.

Bootstrap.js:

jQuery 3.3.1 + Bootstrap.js = 30.0 + 12.9 = 42.9
jQuery 3.1.0 slim + bootstrap.js = 23.6 + 12.9 = 36.5
jQuery 2.2.4 + bootstrap.js = 34.3 + 11.2 = 45.5
jQuery 1.12.4 + bootstrap.js = 38.8 + 11.2 = 50.0

Bootstrap Native JavaScript:

minifill + bsn.js = 2.4 + 7.8 = 10.2
polyfill.io(on chrome 54) + bsn.js = 1.1 + 7.8 = 8.9
polyfill.io(on IE 8) + bsn.js = 12.1 + 7.8 = 19.9

(The polyfill.io size for IE8 was taken from here. These polyfills are discussed in the next sections.)

So, with the Bootstrap components the size varies over the range 36.5 to 50.0 KB, while with Bootstrap Native the range shrinks to 8.9 to 19.9 KB.

Bootstrap Native Browser Support

Regarding browser support, it’s comparable to the original Bootstrap jQuery-based script. That is, it supports the latest browsers on the major mobile and desktop platforms and IE8+. This is accomplished by means of two polyfill strategies.

The first revolves around the use of the Polyfill.io service. All you have to do is insert the relative script tag in the document to get a set of polyfills tailored to each browser:

<script src=”https://cdn.polyfill.io/v2/polyfill.js”></script>

The service can be configured to customize its response based on the features really used on the site. See the Pollyfill.io documentation for details.

Alternatively, it’s possible to use minifill, a potentially lighter custom polyfill supplied by the project author itself.

Bootstrap Native Usage

The usage is similar to the original Bootstrap scripts, except we’ll remove jQuery, replace the Bootstrap scripts with the ones supplied by the Bootstrap Native project, and, if necessary, include the polyfills.

So, before the end </body> tag we include the script for the Bootstrap Native components:

[code language=”html”]
<script src=”https://cdn.jsdelivr.net/npm/bootstrap.native@2.0.15/dist/bootstrap-native-v4.min.js”></script>
[/code]

Other CDN URLs are available and listed on the Bootstrap Native documentation page. Alternatively, the file can be downloaded and served locally.

If the polyfills are needed, they should be included in the <head> tag:

[code language=”html”]
<script src=”text/javascript” src=”https://cdn.jsdelivr.net/gh/thednp/minifill@0.0.4/dist/minifill.min.js”> </script>
<!–[if IE]>
<script src=”https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js”></script>
<![endif]–>
[/code]

This snippet employs the minifill polyfill.

See the Bootstrap Native project documentation page for more detailed usage instructions.

A Port?

To be precise, it’s not a literal port that replicates all the features of the original scripts. The Bootstrap Native author deliberately chose to leave out some slight functionality, particularly lesser-used features, mainly for performance reasons and to simplify the development.

Let’s take a look at some of these issues.

The Custom Events

These are the events triggered by many Bootstrap components during their life cycle. For example, a Modal fires two events — one when it’s opened and the other when it’s closed. (Actually, two events are fired in each case, one before (‘show’) and the other (‘shown’) after the action.)
Similar events are employed by a Tab to notify its observers when there’s a tab switch: a hide event is dispatched for the current tab and a show event for the tab that has to be shown.

Bootstrap Native, instead, provides these events only for the Carousel and the Button. The original Carousel triggers a couple of custom events when there’s a transition between two slides. The first event, ‘slide’, is fired just before the transition begins, while the other one, ‘slid’, is fired after the transition has completed. The event object passed to the handlers has two properties that supply information about the transition, direction, and relatedTarget.

The following jQuery snippet illustrates:

[code language=”js”]
$carousel
.on(‘slide.bs.carousel’, function(e) {
var caption = $(e.relatedTarget).find(‘.carousel-caption’).text();
console.log(‘About to slide to the ‘ + e.direction + ‘ to slide ‘ + caption);
})
.on(‘slid.bs.carousel’, function(e) {
var caption = $(e.relatedTarget).find(‘.carousel-caption’).text();
console.log(‘Slid to the ‘ + e.direction + ‘ to slide ‘ + caption);
});
[/code]

Bootstrap Native supports both events, but the event object doesn’t have the direction and relatedTarget properties. We can translate the previous snippet into vanilla JS in this way:

[code language=”js”]
carousel.addEventListener(‘slide.bs.carousel’, function(e) {
console.log(‘About to slide’);
});

carousel.addEventListener(‘slid.bs.carousel’, function(e) {
console.log(‘Slid’);
});
[/code]

What about if we need the custom events for some other component? It’s not too difficult to implement them ourselves. We can refer to the Bootstrap Native Carousel code and use the CustomEvent API.

First create the event objects:

[code language=”js”]
if ((‘CustomEvent’ in window) && window.dispatchEvent) {
slid = new CustomEvent(“slid.bs.carousel”);
slide = new CustomEvent(“slide.bs.carousel”);
}
[/code]

When a slide transition is about to start, the ‘slide’ event is fired:

[code language=”js”]
if (slide) {
this.carousel.dispatchEvent(slide);
}
[/code]

And, finally, when the transition has finished, the ‘slid’ event is triggered:

[code language=”js”]
if (slid) {
self.carousel.dispatchEvent(slid);
}
[/code]

Based on this model, similar code can be easily added to other components.

The CustomEvent API is not readily available on every browser, but the aforementioned polyfills cover it.

Continue reading %Bootstrap Native: Using Bootstrap Components without jQuery%

5 Ways to Design Like a Dungeon Master

Original Source: https://www.webdesignerdepot.com/2018/02/5-ways-to-design-like-a-dungeon-master/

Storytelling is great for design, so long as you aren’t trying to sell a fairy tale…

Do you tell your users a story about how you’ll save them from their troubles? It’s not very realistic, and users generally know this. You might try a different approach.

Once upon a time in the videogame industry, some game developers got tired of writing stories and quests into their games. So they made a bunch of sandbox-style games where the player could do almost anything they wanted. They just had to want to do it. The “story” would be formed in the player’s own mind, as they took actions and saw consequences in the game.

This was called “emergent storytelling”, and the game developers were very proud of themselves. But they didn’t invent it. Not at all. Emergent narratives have a long history, but were perhaps perfected by the “Game Masters” and “Dungeon Masters” of the tabletop roleplaying games, like Dungeons & Dragons.

There’s a lot we designers can learn from the experiences of Dungeon Masters.

The crash course: Remember when you were a kid playing pretend with others, and then one kid suddenly had a pretend gun, another had a pretend bazooka, and another a nuke? Roleplaying games are basically codified sets of rules that allow people to play pretend without that sort of instant escalation.

The Dungeon Master is a person who referees the game, enforces the rules, tells the story, and doles out consequences for actions. They’ve been telling stories for a long time, often with main characters who are stubborn, ignorant, and determined to break everything the DM might create.

Does that sound familiar to you? There’s a lot we designers can learn from the experiences of Dungeon Masters. They’re experts in both telling pre-planned stories with input from the players, and letting players tell their own stories altogether, and we need to learn both, too.

1. Make Your User the Main Character

Whether a DM has a specific story he wants to tell, or intends to let the player write their own, one thing remains mostly-constant. The player is the protagonist. They are not necessarily the hero, or the “chosen one”, but the protagonist. It is this perspective that allows players to quickly get invested in their character, and the world.

So much of the storytelling I see in web design would have you believe that the product they’re selling is the main character. Worse, sometimes they try to tell you that the website itself is somehow the protagonist of the story. To the Pit with that idea!

Your product is just a tool in their inventory, like a handy rope, or a +4 Vorpal Longsword. They’re the ones making things happen. Remember that, and do your best to play that role. Fight against your role, and they might see you as more of a cursed weapon, to be discarded and dismantled at their earliest convenience.

2. Players May Not Do What You Want

Writers have it easy-ish. They can make their characters do whatever they want, even when it doesn’t make a lot of sense for the character. (Sure, that’s bad writing, but whatever.) Dungeon Masters have to deal with real people playing characters who will do what they want, when they want. Yes, they can punish players for undesired behavior, but that’s a fast way to drive players to another game.

Users are pretty much the same. Learn to adapt to the way your users want to do things. Remember that even if you have a greater narrative going on, it’s still their story in the end. They won’t always be content to go from the Home page, to the Features page, to the Buy Now page every time, in that order. They will find their own path somehow, but it will be easier on both of you if you give them more than one.

3. Players Will Abuse Every System They Can

D&D players and users alike will eventually find the most efficient way to get something done…

A corollary for the point above is that D&D players and users alike will eventually find the most efficient way to get something done, and you may not like it. This is called “meta-gaming” and in D&D, it involves combining classes, special gear, and abilities to create characters that are far more powerful than they should be.

In using web sites or apps, it means that if users find a way to get what they want without jumping through any hoops you have set up, they’ll do it. And they’ll get annoyed if you take their shortcuts away.

4. Have a Big Plan Anyway

Good Dungeon Masters have stuff going on in their world. The players themselves may or may not decide to interact with all of the people and events around them, but “life” will go on. Usually, players will eventually come face to face with the big boss in any case, if only because that boss is bent on dominating the whole world anyway.

Unless your users leave your site altogether, they’re at least going to look at your prices and a big “Buy Me” button eventually. Just because some people won’t follow the plan doesn’t mean you shouldn’t have one. Most users are less obstinate than your average D&D player, and will be glad to have a quick and easy route to their goal.

5. Have Another Plan for When Things Really Break

In D&D, player’s characters can die, and they have to make new ones. In one campaign, a mistake the DM made allowed us to blow up an entire (alternate) plane of existence with most of us in it. Long story. Anyway, he was able to continue the story with new characters, and some fast adjustments to the main story between sessions. Long-time DMs learn to account for catastrophic turns of events like that one.

In web design, we don’t have the option to fix things between sessions, though. The story has to keep going, even if your players are on, say, an error page. If you’re going to use storytelling as a metaphor for your user experience design, then you need to use it everywhere. The story shouldn’t end just because a link went missing.

And with that, have fun. And happy adventuring!

Bouncy Castle Modern Calligraphy Font Family – only $9!

Source

p img {display:inline-block; margin-right:10px;}
.alignleft {float:left;}
p.showcase {clear:both;}
body#browserfriendly p, body#podcast p, div#emailbody p{margin:0;}

Freebie: “Dropcast” Website Template (HTML, Sketch)

Original Source: http://feedproxy.google.com/~r/tympanus/~3/qV2u5fHLbWk/








Dropcast_Featured

Today we’re thrilled to share another modern, responsive HTML template for podcasts with you.

Dropcast is a responsive HTML/CSS/Javascript template which comes with Sketch files and a fully working site with SCSS. It has two page templates and it works very well for podcasts landing pages or blogs. You can easily customize the style.

You can use Dropcast freely for your personal project or commercially, for your client work.

Live demo

Check out the live demo: Dropcast Live Preview

Download the template for free:

You can download the ZIP file of the template and the design file here:

Download Dropcast (ZIP file 4.8 MB)
Download the Dropcast design file (Sketch file 58.6 MB)

Use it freely but please don’t republish or redistribute the template.

GitHub repo link coming soon!

We hope you enjoy this freebie and find it useful!

If you’d like to contribute and publish your freebie on Codrops drop us a line.

Freebie: “Dropcast” Website Template (HTML, Sketch) was written by Amie Chen and published on Codrops.

The 13 best photography websites

Original Source: http://feedproxy.google.com/~r/CreativeBloq/~3/MsZ7GBblMd0/websites-10121096

The web is full of endless resources and tutorials on the subject of photography, but sometimes too much choice can be confusing. Here, we've picked the top photography websites that will really help you take your photography skills to the next level.

If you're a designer or creative after stock photography, check out our Best websites to download stock art post. And if you're looking to upgrade your camera, don't miss our guide to the best cameras for creatives.

But if you'd like to learn more about taking stunning photographs, gain inspiration from expert photographers and develop your camera craft, check out these great photo websites.

01. Digital Camera World

Digital Camera World screenshot

Visit Digital Camera World for daily news, tip, tutorials, reviews and much more

Digital Camera World is the world's fastest-growing photography website, covering every aspect of image-making, from DSLRs and photo editing to mobile photography and drones.

Through informative tutorials, no-nonsense reviews and in-depth buying guides, DCW helps photographers find the best gear, and shows them how to use it. Full disclosure: it's one of our sister titles, also made by Future Publishing.

02. Camera Jabber

Camera Jabber screenshot

Camera Jabber is a goldmine of news, reviews and tips for photographers

Built by photographers for photographers, Camera Jabber offers up an enticing mix of news, reviews and buyers' guides, on everything from phone cameras and DSLRs up to the latest action and 360 cameras. 

You'll also find a wealth of how-to material that'll take you through the photographic basics and on to more specific guides on things like editing your shots and building a portfolio. It's updated daily, and always worth checking in to see what's new.

03. British Journal of Photography

British Journal of Photography website screenshot

The British Journal Photography has been supporting photographers since 1854

The British Journal of Photography has been around since 1854, and it's kept up with the times since then. Its website is a great accompaniment to the venerable magazine, serving up thought-provoking photography and fresh perspectives every day. 

And its student and professional awards are a great way to discover new talent – or, indeed, to get your own photography skills recognised.

04. DIY Photography

DIY Photography website screenshot

DIY Photography has been running for over 10 years and is rammed with useful advice

Started in 2006 as a place for gear-lusting photographers, DIY Photography is a great place to pick up expert advice and read about the latest kit. 

Again written by photographers for photographers, it's heavy on the tutorials with hundreds of useful how-to articles online, plus a whole load of DIY articles that'll help you build your own gear rather than splashing out on expensive kit.

05. iPhone Photography School

iPhone Photography School screenshot

Don’t have a DSLR? You can still take excellent photos with your phone

Just because you don't have a heavyweight camera, it doesn't mean that you can't take beautiful photos. iPhone Photography School has one simple aim: to help you take better photos with your iPhone than most people can with a DSLR. It does this with plenty of in-depth tutorials covering photography techniques and photo editing, as well as inspiring articles and regular competitions so you can pit your newfound skills against others.

06. Digital Photography Review

DP Review screenshot

Digital Photography Review is bursting at the virtual seams with all the sector’s latest news and product reviews

Touted as the number one destination for everything digital photography-related, Digital Photography Review is bursting at the virtual seams with all the sector's latest news and product reviews. 

Complete with video tutorials, buying guides and forums, there's plenty on this photography website to keep you hooked and clicking back for more.

07. The Spruce: Photography

The Spruce: Photography screenshot

The Spruce: Photography is both an advice centre and repository of extensive further reading

Written by a host of photography experts, The Spruce: Photography is both an advice centre and a repository of extensive further reading. Once you're on this website's photography channel, you'll be clicking from one useful video to another before veering off down a rabbit hole of enlightening articles. There's plenty to enjoy – just make sure that you don't get lost.

08. Digital Photography School

Digital Photography School website screenshot

Digital Photographers School aims to help photographers get the most out of their cameras

Digital photography enthusiast Darren Rowse is the man behind Digital Photography School, a site that aims to help photographers get the most out of their cameras. With sections including photo tips, gear and post-processing, all the essentials are well covered.

09. Strobist

Strobist website screenshot

Strobist is a must for anyone just starting out with light

Strobist is about one thing: Learning how to use off-camera flash with your DSLR to take your photos to the next level. Or the next 10 levels. If you’re a complete beginner at lighting, no worries. The free Lighting 101 course starts from the very beginning, and can get you up and running fast.

10. 500px

500px screenshot

Connect with like-minded people at online photography community 500px

If it's inspirational images you're after then look no further than 500px. Founded by Oleg Gutsol and Evgeny Tchebotarev, this online photography community is a place to gain exposure, find inspiration and connect with other photographers. The site has had a recent redesign, and with a library of over six million photos you'll never run out of pretty pictures to look at and feel inspired by.

11. The Photo Argus

The Photo Argus website screenshot

Find helpful tips, tricks and techniques on photography blog The Photo Argus

The Photo Argus is an online resource for photographers – from novice users to advanced pros. The site provides useful information, inspiration, techniques, photographer showcases and more. Find what you're looking for using the organised topic sections or browse through the Popular Posts and the most up-to-date articles on the homepage.

12. PetaPixel

PetaPixel homepage screenshot

Tutorials cover a range of topics

PetaPixel is a website offering tutorials, news and kit. The tutorials are imaginative and practical, offering videos and screen grabs to guide you through each step. 

Equipment covers new camera, lens and other photography kit announcements, but doesn't include reviews (you'll need to look elsewhere for those). News covers all sorts of interesting developments in the photography world – both hilarious and informative.

13. Photography Week

Photography Week front cover and article view

Photography Week is a digital magazine

While not technically a website, Photography Week is a digital magazine, so we're including it here. Packed with beautiful photography, it offers heaps of fresh inspiration every week. 

Full disclosure: It's another of our sister titles, also made by Future Publishing. Get it on iPad and iPhone, Android devices or through Zinio for multiple devices, including computers.

Related articles:

15 ways to improve your photography skillsThe best cameras for creativesThe best photo editor apps

Ending Soon: Get the eBook Self-Publishing Bundle for Only $25

Original Source: http://feedproxy.google.com/~r/Designrfix/~3/kPbc2F4jDJo/ebook-self-publishing-bundle

Writing a book is hard. But getting a book deal with a publishing house is even more difficult. Gone were the days when self-publishing was seen as a route for authors who couldn’t get published. After the success of self-published authors like EL James, Robert Kiyosaki, and James Redfield, more and more authors are looking […]

The post Ending Soon: Get the eBook Self-Publishing Bundle for Only $25 appeared first on designrfix.com.

9 Android Screen Recording Apps to Record Screen Activity

Original Source: https://www.hongkiat.com/blog/android-screen-recording-apps/

With Android 5.0 Marshmallow, Google added native screen recording capability, but there was no introduction of a screen recording app. Even now that Android 8.0 Oreo is here, there is still no sign…

Visit hongkiat.com for full content.

15 Unbeatable Font Combinations That Can Boost the Aesthetics of Your Design Project

Original Source: http://feedproxy.google.com/~r/Designrfix/~3/0VqMmxLXP5Q/15-unbeatable-font-combinations-boost-aesthetics-design-project

  There’s a saying in the field of designing that “the best designs are those which you don’t notice”. But how are you going to appreciate the aesthetics of a design if it does not stand out? If you want your audience to admire your work, you need to start working on something that is […]

The post 15 Unbeatable Font Combinations That Can Boost the Aesthetics of Your Design Project appeared first on designrfix.com.

5 tips for better typesetting

Original Source: http://feedproxy.google.com/~r/CreativeBloq/~3/r6tTthQ-0b0/5-tips-for-better-typesetting

Typesetting – the business of putting text on a page – is one of those design disciplines that might look straightforward enough to the casual observer, but which is actually full of potential pitfalls. There's more to it than choosing a decent font pairing and hoping for the best.

The secrets of typesetting

Bad typesetting can be just as hard on the eye as an ill-considered palette or a poorly-executed logo design, and there's no way around it: you have to take your time learning the basics. If you follow these expert tips, though, you should find that the path to typesetting expertise becomes much easier to follow.

01. Take your time

"Getting typesetting right is something that will largely come with time," says Michelle Stocks of Nelson Bostock Unlimited. "So just keep practising, and don't get put off when it doesn't look good immediately. I recommend looking at a lot of inspiration too, because it helps you get an idea of what works well together."

02. Keep studying 

"First you need to learn the tools: font size, leading, tracking, horizontal and vertical scaling, paragraph styling, language settings and grid systems," says Maya Walters of Hogarth Worldwide. "Then you need to extend your knowledge: there's always something new to learn. Read a book on typography and set challenges for yourself to put your new skills into practice, such as working on a personal project."

03. Read books

For reading matter, Luke Tonge of LIFE suggests Type Matters! by Jim Williams and Thinking with Type by Ellen Lupton. And if you really want to treat yourself, he adds, The Visual History of Type by Paul McNeil is "the best book on type this year". 

04. Use online resources 

"There are countless online resources to help you improve your skills too," says Tonge. "They include ilovetypography.com, typographher.com, letterformarchive.org, typewolf.com and fontsinuse.com. Plus, on Twitter there are heaps of amazing foundries, magazines, designers, publications and organisations to follow, to further immerse yourself in the world of type." 

05. Clients come first

"Above all, find out about the client's needs when it comes to typesetting," says Walters. "Do they have guidelines and styles? If so, they should be made a prime consideration for the typography you create."

This article was originally published in issue 274 of Computer Arts, the global design magazine. Buy issue 274 here or subscribe to Computer Arts here.

Related articles:

10 pretty fonts to glam up your projectsThe rules of responsive web typography14 best-practice rules for striking editorial design

20 WordPress Plugins to Enhance Post Management – Best of

Original Source: https://www.hongkiat.com/blog/manage-posts-wordpress-plugins/

Previously I wrote a post on some useful plugins that can help you manage multiple WordPress websites. However, when you’re a blogger managing your website is just half the task. The second…

Visit hongkiat.com for full content.