Front-End Checklist

The perfect Front-End Checklist for modern websites and meticulous develope...

README

Front-End Checklist

  Front-End Checklist
 


🚨 Currently working on a V2 of frontendchecklist.io,
feel free to discuss any feature you would like to see in the next version



The Front-End Checklist is an exhaustive list of all elements you need to have / to test before launching your website / HTML page to production.

      PRs Welcome          Contributors        Front‑End_Checklist followed         CC0 

  How To UseContributingWebsiteProduct Hunt

Other Checklists:
  🎮 Front-End Performance Checklist💎 Front-End Design Checklist


It is based on Front-End developers' years of experience, with the additions coming from some other open-source checklists.


How to use?


All items in the Front-End Checklist are required for the majority of the projects, but some elements can be omitted or are not essential (in the case of an administration web app, you may not need RSS feed for example). We choose to use 3 levels of flexibility:

![Low][low_img] means that the item is recommended but can be omitted in some particular situations.
![Medium][medium_img] 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.
![High][high_img] 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:

📖: documentation or article
🛠: online tool / testing tool
📹: media or video content

You can contribute to the Front-End Checklist App reading the CONTRIBUTING.md file which explains everything about the project.



Head


Notes: You can find a list of everything that could be found in the<head> of an HTML document.


Meta tag


[ ] Doctype: ![High][high_img] The Doctype is HTML5 and is at the top of all your HTML pages.

  1. ``` html
  2. <!doctype html> 
  3. ```


The next 2 meta tags (Charset and Viewport) need to come first in the head.

[ ] Charset: ![High][high_img] The charset (UTF-8) is declared correctly.

  1. ``` html
  2. <meta charset="utf-8">
  3. ```

[ ] Viewport: ![High][high_img] The viewport is declared correctly.

  1. ``` html
  2. <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
  3. ```

[ ] Title: ![High][high_img] A title is used on all pages (SEO: Google calculates the pixel width of the characters used in the title, and it cuts off between 472 and 482 pixels. The average character limit would be around 55-characters).

  1. ``` html
  2. <title>Page Title less than 55 characters</title>
  3. ```


[ ] Description: ![High][high_img] A meta description is provided, it is unique and doesn't possess more than 150 characters.

  1. ``` html
  2. <meta name="description" content="Description of the page less than 150 characters">
  3. ```


[ ] Favicons: ![Medium][medium_img] 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).

  1. ``` html
  2. <link rel="icon" type="image/x-icon" href="https://example.com/favicon.ico">
  3. <link rel="icon" type="image/png" href="https://example.com/favicon.png">
  4. ```


[ ] Apple Web App Meta: ![Low][low_img] Apple meta-tags are present.

  1. ``` html
  2. <link rel="apple-touch-icon" href="/custom-icon.png">
  3. <meta name="apple-mobile-web-app-capable" content="yes">
  4. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  5. ```


[ ] Windows Tiles: ![Low][low_img] Windows tiles are present and linked.

  1. ``` html
  2. <meta name="msapplication-config" content="browserconfig.xml" />
  3. ```

Minimum required xml markup for the browserconfig.xml file is as follows:

  1. ```xml
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <browserconfig>
  4.    <msapplication>
  5.      <tile>
  6.         <square70x70logo src="small.png"/>
  7.         <square150x150logo src="medium.png"/>
  8.         <wide310x150logo src="wide.png"/>
  9.         <square310x310logo src="large.png"/>
  10.      </tile>
  11.    </msapplication>
  12. </browserconfig>
  13. ```


[ ] Canonical: ![Medium][medium_img] Use rel="canonical" to avoid duplicate content.

  1. ``` html
  2. <link rel="canonical" href="http://example.com/2017/09/a-new-article-to-read.html">
  3. ```


HTML tags


[ ] Language attribute: ![High][high_img] The lang attribute of your website is specified and related to the language of the current page.

  1. ``` html
  2. <html lang="en">
  3. ```

[ ] Direction attribute: ![Medium][medium_img] The direction of lecture is specified on the html tag (It can be used on another HTML tag).

  1. ``` html
  2. <html dir="rtl">
  3. ```


[ ] Alternate language: ![Low][low_img] The language tag of your website is specified and related to the language of the current page.

  1. ``` html
  2. <link rel="alternate" href="https://es.example.com/" hreflang="es">
  3. ```

[ ] x-default: ![Low][low_img] The language tag of your website for international landing pages.

  1. ``` html
  2. <link rel="alternate" href="https://example.com/" hreflang="x-default" />
  3. ```


[ ] Conditional comments: ![Low][low_img] Conditional comments are present for IE if needed.


[ ] RSS feed: ![Low][low_img] If your project is a blog or has articles, an RSS link was provided.

* [ ] **CSS Critical:** ![Medium][medium_img] The CSS critical (or "above the fold") collects all the CSS used to render the visible portion of the page. It is embedded before your principal CSS call and between `` in a single line (minified).


* [ ] **CSS order:** ![High][high_img] All CSS files are loaded before any JavaScript files in the ``. (Except the case where sometimes JS files are loaded asynchronously on top of your page).

Social meta


Visualize and generate automatically our social meta tags with Meta Tags

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.

[ ] Facebook Open Graph: ![Low][low_img] All Facebook Open Graph (OG) are tested and no one is missing or with false information. Images need to be at least 600 x 315 pixels, although 1200 x 630 pixels is recommended.

Notes: Using og:image:width and og:image:height will specify the image dimensions to the crawler so that it can render the image immediately without having to asynchronously download and process it.


  1. ``` html
  2. <meta property="og:type" content="website">
  3. <meta property="og:url" content="https://example.com/page.html">
  4. <meta property="og:title" content="Content Title">
  5. <meta property="og:image" content="https://example.com/image.jpg">
  6. <meta property="og:description" content="Description Here">
  7. <meta property="og:site_name" content="Site Name">
  8. <meta property="og:locale" content="en_US">
  9. <meta property="og:image:width" content="1200">
  10. <meta property="og:image:height" content="630">
  11. ```

🛠 Test your page with the Facebook OG testing


[ ] Twitter Card: ![Low][low_img]

  1. ``` html
  2. <meta name="twitter:card" content="summary">
  3. <meta name="twitter:site" content="@site_account">
  4. <meta name="twitter:creator" content="@individual_account">
  5. <meta name="twitter:url" content="https://example.com/page.html">
  6. <meta name="twitter:title" content="Content Title">
  7. <meta name="twitter:description" content="Content description less than 200 characters">
  8. <meta name="twitter:image" content="https://example.com/image.jpg">
  9. ```

🛠 Test your page with the Twitter card validator




HTML


Best practices


[ ] HTML5 Semantic Elements: ![High][high_img] HTML5 Semantic Elements are used appropriately (header, section, footer, main...).


[ ] Error pages: ![High][high_img] Error 404 page and 5xx exist. Remember that the 5xx error pages need to have their CSS integrated (no external call on the current server).

[ ] Noopener: ![Medium][medium_img] In case you are using external links with target="_blank", your link should have a rel="noopener" attribute to prevent tab nabbing. If you need to support older versions of Firefox, use rel="noopener noreferrer".


[ ] Clean up comments: ![Low][low_img] Unnecessary code needs to be removed before sending the page to production.

HTML testing


[ ] W3C compliant: ![High][high_img] All pages need to be tested with the W3C validator to identify possible issues in the HTML code.


[ ] HTML Lint: ![High][high_img] I use tools to help me analyze any issues I could have on my HTML code.


🛠 webhint


[ ] Link checker: ![High][high_img] There are no broken links in my page, verify that you don't have any 404 error.


[ ] Adblockers test: ![Medium][medium_img] Your website shows your content correctly with adblockers enabled (You can provide a message encouraging people to disable their adblocker).




Webfonts


Notes: Using web fonts may cause Flash Of Unstyled Text/Flash Of Invisible Text - consider having fallback fonts and/or utilizing web font loaders to control behavior.


[ ] Webfont format: ![High][high_img] WOFF, WOFF2 and TTF are supported by all modern browsers.


[ ] Webfont size: ![High][high_img] Webfont sizes don't exceed 2 MB (all variants included).

[ ] Webfont loader: ![Low][low_img] Control loading behavior with a webfont loader




CSS


Notes: Take a look at CSS guidelines and Sass Guidelines followed by most Front-End developers. If you have a doubt about CSS properties, you can visit CSS Reference. There is also a short Code Guide for consistency.


[ ] Responsive Web Design: ![High][high_img] The website is using responsive web design.
[ ] CSS Print: ![Medium][medium_img] A print stylesheet is provided and is correct on each page.
[ ] Preprocessors: ![Low][low_img] Your project is using a CSS preprocessor (e.g Sass, Less, Stylus).
[ ] Unique ID: ![High][high_img] If IDs are used, they are unique to a page.
[ ] Reset CSS: ![High][high_img] 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.)

📖 Reboot


[ ] JS prefix: ![Low][low_img] All classes (or id- used in JavaScript files) begin with js- and are not styled into the CSS files.

  1. ``` html
  2. <div id="js-slider" class="my-slider">
  3. <div id="id-used-by-cms" class="js-slider my-slider">
  4. ```

* [ ] **embedded or inline CSS:** ![High][high_img] Avoid at all cost embedding CSS in `