The ironic inaccessibility of a11y

This resonated with me:

It’s ironic to me that the numeronym “a11y” lacks accessibility: it’s not immediately decipherable by humans who aren’t “in the club”; and, in some fonts, it’s visually indistinguishable from the word “ally” (with lowercase L’s), which can foil searches for clarity.

— Eric Meyer (@meyerweb) November 5, 2018

Because I bet it took me a year after seeing that acronym (“numeronym”, I guess) for the first time to know that was just a stand-in for the …

The post The ironic inaccessibility of a11y appeared first on CSS-Tricks.

Read more

How to Evolve Your Blog with the Help of Artificial Intelligence

Out of all the buzzwords being used AI causes the most stir nowadays. Artificial Intelligence or AI is a separate branch of computer science, and it deals with the development of complex computer systems to aid humans. By taking over repetitive, dull or grueling tasks, humans have more time to focus on more important endeavors. …
The post How to Evolve Your Blog with the Help of Artificial Intelligence appeared first on Torque.
Read more

Top Sources For Web Design Inspiration

Finding inspiration is not as easy as people think. It takes time to find out what you actually want to do with a website and which design would work for what kind of business. If you are running short on time and you are in desperate need for inspiration, here are some of the best …
The post Top Sources For Web Design Inspiration appeared first on Torque.
Read more

When’s the last time you SFTP’d (or the like) into a server and changed a file directly?

In the grand tradition of every single poll question I’ve ever posted, the poll below has a has a fundamental flaw. In this case, there is no option between “In the last month” and “Never” but, alas, the results are interesting:

When’s the last time you SFTP’d (or the equiv) into a server and changed a file directly?

— Chris Coyier (@chriscoyier) October 9, 2018

What I was trying to get at with this poll is how many people do …

The post When’s the last time you SFTP’d (or the like) into a server and changed a file directly? appeared first on CSS-Tricks.

Read more

25+ Best Microsoft Word Brochure Templates

Today, we’re bringing you a set of professionally designed Microsoft Word brochure templates to help you get a head start on your next brochure project. Every designer has a collection of pre-designed templates. These templates not only allow you to enhance your workflow but also save hours of time otherwise spent searching for an inspiring […]
Read more

Get References from HTML Built with Template Literals

One thing JavaScript template literals are great at is little blocks of HTML. Like:

// Probably from some API or whatever
const data = {
title: "Title",
content: "Content"
};

const some_html = `

${data.title}

${data.content}

`;

But that’s still just a string. It’s not ready to append to the DOM just yet. And what if we need references to those elements inside somehow?

We’ve written about a couple of libraries that are in this vein: lit-html

The post Get References from HTML Built with Template Literals appeared first on CSS-Tricks.

Read more