Skip to main content

Website Checklist

Quick Web Developers Website Checklist & A List Of Tools For Improvement

Quick Web Developers Website Checklist & A List Of Tools For Improvement

A set of questions you should use before handing off your application to the client.

Quick Web Developers Website Checklist & A List Of Tools For Improvement

A set of questions you should use before handing off your application to the client.

First off… download this developer checklist extension for chrome that literally evaluates the checkpoints on any webpage you activate it on.. it also provides advice and html validation so that you can improve your site and it’s SEO rankings!

Here it is in action :

Remainder of tool list is below this checklist:


Usefulness & Relevance:

Does the content meet user needs, goals, and interests?
Does the content meet business goals?
For how long will the content be useful? When should it expire? Has its usefulness already expired?
Is the content timely and relevant?

Clarity & Accuracy:

Is the content understandable to customers?
Is the content organized logically & coherently?
Is the content correct?
Does the content contain factual errors, typos, or grammatical errors?
Do images, video, and audio meet technical standards, so they are clear?

Influence & Engagement:

Does the content use the most appropriate techniques to influence or engage customers?
Does the content execute those techniques effectively?
Does the content use too many or too few techniques for the context?

Completeness:

Does the content include all of the information customers need or might want about a topic?
Does the content include too much or too little information about a topic for the context?

Voice & Style:

Does the content consistently reflect the editorial or brand voice?
Does its tone adjust appropriately to the context — for example, sales versus customer service?
Does the content convey the appropriate editorial and brand qualities?
Does the content seem to have a style? If so, does the content adhere to it consistently?
Does the content read, look, or sound as though it’s professionally crafted?

Usability & Findability:

Is the content easy to scan or read?
Is the content in a usable format, including headings, bulleted lists, tables, white space, or similar techniques, as appropriate to the content?
Does the content have the appropriate metadata?
Does the content follow search engine optimization (SEO) guidelines — such as using keywords — without sacrificing quality in other areas?
Can customers find the content when searching using relevant keywords?

Tool List:

Discover More:

Comments

Popular posts from this blog

Breaking Down Scope, Context, And Closure In JavaScript In Simple Terms.

Breaking Down Scope, Context, And Closure In JavaScript In Simple Terms. Breaking Down Scope, Context, And Closure In JavaScript In Simple Terms. “JavaScript’s global scope is like a public toilet. You can’t avoid going in there, but try to limit your contact with surfaces when you… Breaking Down Scope, Context, And Closure In JavaScript In Simple Terms. Photo by Florian Olivo on  Unsplash “ J avaScript’s global scope is like a public toilet. You can’t avoid going in there, but try to limit your contact with surfaces when you do.” ― Dmitry Baranowski Here’s another (much) more simple article I wrote on the subject: Closures In Javascript Answer A closure is a function defined...

links

links Absolutely Everything You Could Need To Know About How JavaScript TOC & Condensed Links **** **** **** **** **** 1 2 3 4 5 leonardomso/33-js-concepts *This repository was created with the intention of helping developers master their concepts in JavaScript. It is not a…*github.com Call stack - MDN Web Docs Glossary: Definitions of Web-related terms MDN *A call stack is a mechanism for an interpreter (like the JavaScript interpreter in a web browser) to keep track of its…*developer.mozilla.org Understanding Javascript Function Executions — Call Stack, Event Loop , Tasks & more *Web developers or Front end engineers, as that’s what we like to be called, nowadays do everything right from acting as…*medium.com Understanding the JavaScript call stack *The JavaScript engine (which is found in a hosting environment like the browser), is a single-threaded interpreter…*medium.freecodecamp.org Javascript: What Is The Execution Context? ...

Bash Proficiency

Bash Proficiency In Under 15 Minutes Bash Proficiency In Under 15 Minutes Cheat sheet and in-depth explanations located below main article contents… The UNIX shell program interprets user commands, which are… Bash Proficiency In Under 15 Minutes Cheat sheet and in-depth explanations located below main article contents… The UNIX shell program interprets user commands, which are either directly entered by the user, or which can be read from a file called the shell script or shell program. Shell scripts are interpreted, not compiled. The shell reads commands from the script line per line and searches for those commands on the system while a compiler converts a program into machine readable form, an executable file. LIFE SAVING PROTIP: A nice thing to do is to add on the first line #!/bin/bash -x I will go deeper into the explanations behind some of these examples at the bottom of this article. Here’s some previous articles I’ve written for more advanced users. Bash Commands That Sa...