thedaviddias / Front-End-Checklist
- пятница, 20 октября 2017 г. в 03:14:13
 
🗂 The perfect Front-End Checklist for modern websites and meticulous developers
The Front-End Checklist is an exhaustive list of all elements you need to have / to test before launching your site / page HTML to production.
It is based on Front-End developers' years of experience, with the addition from some other open-source checklists.
All items in the Front-End Checklist are required for the majority of the projects, but some elements can be omitted or not essential (in case of an administration web app, you may not need RSS feed for example). We choose to use 3 levels of flexibility:
 means that the item is recommended but can be omitted in some particular situations.
 means that the item is highly recommended and can eventually be omitted in some really particular cases. Some elements, if omitted, can have bad repercussions in terms of performance or SEO.
 means that the item can't be omitted by any reason. You may cause a dysfunction in your page or have accessibility or SEO issues. The testing priority needs to be on these elements first.Some resources possess an emoticon to help you understand which type of content / help you may find on the checklist:
Notes: You can find a list of everything that could be found in the
<head>of an HTML document.
<!-- Doctype HTML5 -->
<!DOCTYPE html>The next 3 meta tags (Charset, X-UA Compatible and Viewport) need to come first in the head.
<!-- Set character encoding for the document -->
<meta charset="utf-8"><!-- Instruct Internet Explorer to use its latest rendering engine -->
<meta http-equiv="x-ua-compatible" content="ie=edge"><!-- Viewport for responsive web design -->
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Document Title -->
<title>Page Title less than 65 characters</title>
 A meta description is provided, it is unique and doesn't possess more than 150 characters.<!-- Meta Description -->
<meta name="description" content="Description of the page less than 150 characters">
 Each favicon has been created and displays correctly. If you have only a favicon.ico, put it at the root of your site. Normally you won't need to use any markup. However, it's still good practice to link to it using the example below. Today, PNG format is recommended over .ico format (dimensions: 32x32px)<!-- Standard favicon -->
<link rel="icon" type="image/x-icon" href="https://example.com/favicon.ico" />
<!-- Recommended favicon format -->
<link rel="icon" type="image/png" href="https://example.com/favicon.png" />
 Apple touch favicon apple-mobile-web-app-capable are present. (Create your Apple Icon file with at least 200x200px dimension to support all dimensions that you may need)<!-- Apple Touch Icon -->
<link rel="apple-touch-icon" href="/custom-icon.png"><!-- Helps prevent duplicate content issues -->
<link rel="canonical" href="http://example.com/2017/09/a-new-article-to-red.html">
 The language tag of your website is specified and related to the language of the current page.<html lang="en">
 The direction of lecture is specified on the body tag (It can be used on another HTML tag).<html dir="rtl">
 The language tag of your website is specified and related to the language of the current page.<link rel="alternate" href="https://es.example.com/" hreflang="es">
📖 About conditional comments (Internet Explorer) - MSDN - Microsoft
RSS feed: 
CSS Critical: 
<style></style> in a single line (minified).
 All CSS files are loaded before any JavaScript files in the <head>. (Except the case, where sometimes JS files are loaded asynchronously on top of your page).Facebook OG and Twitter Cards are, for any website, highly recommended. The other social media tags can be considered if you target a particular presence on those and want to ensure the display.
 All Facebook Open Graph (OG) are tested and no one is missing or with a false information. Images need to be at least 600 x 315 pixels, 1200 x 630 pixels recommended.<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com/page.html">
<meta property="og:title" content="Content Title">
<meta property="og:image" content="https://example.com/image.jpg">
<meta property="og:description" content="Description Here">
<meta property="og:site_name" content="Site Name">
<meta property="og:locale" content="en_US">
📖 A Guide to Sharing for Webmasters🛠 Test your page with the Facebook OG testing
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@site_account">
<meta name="twitter:creator" content="@individual_account">
<meta name="twitter:url" content="https://example.com/page.html">
<meta name="twitter:title" content="Content Title">
<meta name="twitter:description" content="Content description less than 200 characters">
<meta name="twitter:image" content="https://example.com/image.jpg">
📖 Getting started with cards — Twitter Developers🛠 Test your page with the Twitter card validator
 HTML5 Semantic Elements are used appropriately (header, section, footer, main...)
 Error 404 page and 5xx exist. Remember that the 5xx error page needs to have his CSS integrated (no external call on the current server).
 In case you are using target="_blank" on your links, rel="noreferrer noopener" is present on the <img>.
 Unnecessary code needs to be removed before sending the page to production.
 All pages need to be tested with the W3C validator to identify possible issues in the HTML code.Desktop Browsers: 
Mobile Browsers:  
Link checker: 
 Your website shows your content correctly with adblockers enabled (You can provide a message encouraging people to disable their adblocker)
 Pages are close to pixel perfect. Depending on the quality of the creatives, you may not be 100% accurate, but your page needs to be close to your template.Notes: Take a look on CSS guidelines and Sass Guidelines followed by most Front-End developers. If you have a doubt on CSS properties, you can visit CSS Reference.
 The website is using responsive web design.
 A print stylesheet is provided and is correct on each page.
 Your page is using a CSS preprocessor (Sass is preferred).
 If IDs are used, they are unique to a page
 A CSS reset (reset, normalize or reboot) is used and up to date. (If you are using a CSS Framework like Bootstrap or Foundation, a Normalize is already included into it.)
 All classes (or id- used in JavaScript files) begin with js- and are not styled into the CSS files.<div id="js-slider" class="my-slider">
<!-- Or -->
<div id="id-used-by-cms" class="js-slider my-slider">
 Avoid at all cost the use of CSS embed or inline: only used for valid reasons (ex: background-image for slider, CSS critical).
 CSS vendor prefixes are used and are generated accordingly with your browser support compatibility.
 CSS files are concatenated in a single file (Not for HTTP/2)
 All CSS files are minified.
 CSS files need to be non-blocking to prevent the DOM from taking time to load.Responsive web design: 
CSS Validator: 
 All pages need to be tested for LTR and RTL languages if they need to be supported.Notes: For a complete understanding of image optimization, check the free ebook Essential Image Optimization from Addy Osmani.
 All images are optimized to be rendered in the browser. WebP format could be used for critical pages (like Homepage).
🛠 Imagemin🛠 Use ImageOptim to optimise your images for free.
 You provide layout images x2 or 3x, support retina display.
 Small images are in a sprite file (in case of icons, they can be in an SVG sprite image).
 All <img> have height and width set (Don't specify px or %).Note: Lots of developers assume that width and height are not compatible with responsive web design. It's absolutely not the case.
 All <img> have an alternative text which describe the image visually.
 Images are lazyloaded (A noscript fallback is always provided).
 You don't have any JavaScript code inline (mixed with your HTML code).
 JavaScript files are concatenated.
 JavaScript files are minified (you can add the .min suffix).
 JavaScript files are loaded asynchronously using async or deferred using defer attribute.
 If you need to target some specific features you can use a custom Modernizr to add classes in your <html> tag.
 Images, scripts and CSS need to be lazy loaded to improve the response time of the current page (See details in their respective sections).Notes: You can watch the playlist A11ycasts with Rob Dodson
📹 
 Major functionality like main navigation and search should work without JavaScript enabled.
 All pages have an H1 which is not the title of the website.
 Headings should be used properly in the right order (H1 to H6)
📹 Why headings and landmarks are so important -- A11ycasts #18
 <header> has role="banner"
 <nav> has role="navigation"
 <main> has role="main"
 A label is associated with each input form element. In case, a label can't be display, use aria-label instead.
 Use the WAVE tool to test if your page respects the accessibility standards.
 Test your website using only your keyboard in a previsible order. All interactive elements are reachable and usable.
 All pages were tested in a screen-reader (VoiceOver, ChromeVox, NVDA or Lynx).
 If the focus is disabled, it is replaced by visible state in CSS.
 Google Analytics is installed and correctly configured.
 Heading text helps to understand the content in the current page.
 A sitemap.xml exists and was submit in Google Search Console (ex: Google Webmaster Tools)
 The robots.txt is not blocking webpages
 Pages using structured data are tested and are without errors. Structured data helps crawlers understand the content in the current page.
📖 Introduction to Structured Data | Search | Google Developers🛠 Test your page with the Structured Data Testing Tool
 An HTML sitemap is provided and is accessible via a link in the footer of your website.Open an issue or a pull request to suggest changes or additions.
The Front-End Checklist repository consists of two branches:
masterThis branch consists of the README.md file that is automatically reflected on the Front-End Checklist website.
developThis branch will be used to make some significant changes to the structure, content if needed. It is preferable to use the master branch to fix small errors or add a new item.
Check out all the super awesome contributors.
David Dias, Geoffrey Signorato, Sandeep Ramgolam and Cédric Poilly.