[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-432":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":17,"stars7d":18,"stars30d":19,"stars90d":16,"forks30d":16,"starsTrendScore":20,"compositeScore":21,"rankGlobal":10,"rankLanguage":10,"license":22,"archived":23,"fork":23,"defaultBranch":24,"hasWiki":23,"hasPages":25,"topics":26,"createdAt":10,"pushedAt":10,"updatedAt":39,"readmeContent":40,"aiSummary":41,"trendingCount":16,"starSnapshotCount":16,"syncStatus":15,"lastSyncTime":42,"discoverSource":43},432,"Front-End-Checklist","thedaviddias\u002FFront-End-Checklist","thedaviddias","🗂 The essential checklist for modern web development, for humans and AI agents","https:\u002F\u002Ffrontendchecklist.io",null,"MDX",72890,6651,1424,2,0,10,79,304,43,120,"Creative Commons Zero v1.0 Universal",false,"main",true,[27,28,29,30,31,32,33,34,35,36,37,38],"checklist","css","front-end-developer-tool","front-end-development","frontend","guidelines","html","javascript","lists","reference","resources","web-development","2026-06-12 04:00:03","# 🗂 Front-End Checklist\n\nThe Front-End Checklist is an exhaustive list of all elements you need to have \u002F to test before launching your website \u002F\nHTML page to production.\n\n**Other Checklists:**\n\n- [🎮 Front-End Performance Checklist](https:\u002F\u002Fgithub.com\u002Fthedaviddias\u002FFront-End-Performance-Checklist#---------front-end-performance-checklist-)\n- [💎 Front-End Design Checklist](https:\u002F\u002Fgithub.com\u002Fthedaviddias\u002FFront-End-Design-Checklist#front-end-design-checklist)\n\n> [!TIP]\n> ⭐️ Dev-friendly UX patterns you wish you knew. 👉 [UX Patterns for Devs](https:\u002F\u002Fuxpatterns.dev\u002Fen) ⭐️\n\n## 📚 Table of Contents\n\n- [How to use](#how-to-use)\n- [Head](#head)\n- [HTML](#html)\n- [Webfonts](#webfonts)\n- [CSS](#css)\n- [JavaScript](#javascript)\n- [Accessibility](#accessibility)\n\n## How to use?\n\n\u003C!-- prettier-ignore-start -->\n> [!IMPORTANT]\n> **Disclaimer:** This checklist is based on Front-End developers' years of experience, with additions from other open-source checklists.\n\u003C!-- prettier-ignore-end -->\n\nAll items in the **Front-End Checklist** are required for the majority of the projects, but some elements can be omitted\nor are not essential (in the case of an administration web app, you may not need RSS feed for example). We choose to use\n3 levels of flexibility:\n\n- ![Low][low_img] indicates that the item is recommended but can be omitted in certain situations.\n- ![Medium][medium_img] indicates that the item is highly recommended but can potentially be omitted in very specific\n  cases. However, omitting these elements can negatively impact performance or SEO.\n- ![High][high_img] indicates that the item cannot be omitted under any circumstances. Removing these elements may\n  result in page malfunctions or cause accessibility and SEO issues. Testing should prioritize these elements first.\n\nSome resources possess an emoticon to help you understand which type of content \u002F help you may find on the checklist:\n\n- 📖: documentation or article\n- 🛠: online tool \u002F testing tool\n- 📹: media or video content\n\n## Head\n\n\u003C!-- prettier-ignore-start -->\n> [!NOTE]\n> You can find [a list of everything](https:\u002F\u002Fgithub.com\u002Fjoshbuchea\u002FHEAD) that could be found in the `\u003Chead>` of an HTML document.\n\u003C!-- prettier-ignore-end -->\n\n### Meta tag\n\n- [ ] **Doctype:** ![High][high_img] The Doctype is HTML5 and is at the top of all your HTML pages.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!doctype html>\u003C!-- HTML5 -->\n```\n\u003C!-- prettier-ignore-end -->\n\n- 📖\n  [Determining the character encoding - HTML5 W3C](https:\u002F\u002Fwww.w3.org\u002FTR\u002Fhtml5\u002Fsyntax.html#determining-the-character-encoding)\n\n_The next 2 meta tags (Charset and Viewport) need to come first in the head._\n\n- [ ] **Charset:** ![High][high_img] The charset (UTF-8) is declared correctly.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Set character encoding for the document -->\n\u003Cmeta charset=\"utf-8\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- [ ] **Viewport:** ![High][high_img] The viewport is declared correctly.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Viewport for responsive web design -->\n\u003Cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1, viewport-fit=cover\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- [ ] **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).\n\n```html\n\u003C!-- Document Title -->\n\u003Ctitle>Page Title less than 55 characters\u003C\u002Ftitle>\n```\n\n- 📖 [Title - HTML - MDN](https:\u002F\u002Fdeveloper.mozilla.org\u002Fen-US\u002Fdocs\u002FWeb\u002FHTML\u002FElement\u002Ftitle)\n- 🛠 [SERP Snippet Generator](https:\u002F\u002Fwww.sistrix.com\u002Fserp-snippet-generator\u002F)\n\n- [ ] **Description:** ![High][high_img] A meta description is provided, it is unique and doesn't possess more than 150\n      characters.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Meta Description -->\n\u003Cmeta name=\"description\" content=\"Description of the page less than 150 characters\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- 📖\n  [Meta Description - HTML - MDN](https:\u002F\u002Fdeveloper.mozilla.org\u002Fen-US\u002Fdocs\u002FLearn\u002FHTML\u002FIntroduction_to_HTML\u002FThe_head_metadata_in_HTML#Adding_an_author_and_description)\n\n- [ ] **Favicons:** ![Medium][medium_img] Each favicon has been created and displays correctly. If you have only a\n      `favicon.ico`, put it at the root of your site. Normally you won't need to use any markup. However, it's still\n      good practice to link to it using the example below. Today, **PNG format is recommended** over `.ico` format\n      (dimensions: 32x32px).\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Standard favicon -->\n\u003Clink rel=\"icon\" type=\"image\u002Fx-icon\" href=\"https:\u002F\u002Fexample.com\u002Ffavicon.ico\">\n\u003C!-- Recommended favicon format -->\n\u003Clink rel=\"icon\" type=\"image\u002Fpng\" href=\"https:\u002F\u002Fexample.com\u002Ffavicon.png\">\n\u003C!-- Recommended modern favicon format (not recommended for legacy browsers) -->\n\u003Clink rel=\"icon\" type=\"image\u002Fsvg+xml\" href=\"https:\u002F\u002Fexample.com\u002Ffavicon.svg\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- 🛠 [Favicon Generator](https:\u002F\u002Fwww.favicon-generator.org\u002F)\n- 🛠 [RealFaviconGenerator](https:\u002F\u002Frealfavicongenerator.net\u002F)\n- 📖 [Favicon Cheat Sheet](https:\u002F\u002Fgithub.com\u002Faudreyr\u002Ffavicon-cheat-sheet)\n- 📖 [Favicons, Touch Icons, Tile Icons, etc. Which Do You Need? - CSS Tricks](https:\u002F\u002Fcss-tricks.com\u002Ffavicon-quiz\u002F)\n- 📖 [PNG favicons - caniuse](https:\u002F\u002Fcaniuse.com\u002Flink-icon-png)\n\n- [ ] **Apple Web App Meta:** ![Low][low_img] Apple meta-tags are present.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Apple Touch Icon (at least 200x200px) -->\n\u003Clink rel=\"apple-touch-icon\" href=\"\u002Fcustom-icon.png\">\n\n\u003C!-- To run the web application in full-screen -->\n\u003Cmeta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\n\u003C!-- Status Bar Style (see Supported Meta Tags below for available values) -->\n\u003C!-- Has no effect unless you have the previous meta tag -->\n\u003Cmeta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- 📖 [Configuring Web Applications](https:\u002F\u002Fdeveloper.apple.com\u002Flibrary\u002Fcontent\u002Fdocumentation\u002FAppleApplications\u002FReference\u002FSafariWebContent\u002FConfiguringWebApplications\u002FConfiguringWebApplications.html)\n- 📖 [Supported Meta Tags](https:\u002F\u002Fdeveloper.apple.com\u002Flibrary\u002Fcontent\u002Fdocumentation\u002FAppleApplications\u002FReference\u002FSafariHTMLRef\u002FArticles\u002FMetaTags.html)\n\n- [ ] **Windows Tiles:** ![Low][low_img] Windows tiles are present and linked.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Microsoft Tiles -->\n\u003Cmeta name=\"msapplication-config\" content=\"browserconfig.xml\">\n```\n\u003C!-- prettier-ignore-end -->\n\nMinimum required xml markup for the `browserconfig.xml` file is as follows:\n\n```xml\n\u003C?xml version=\"1.0\" encoding=\"utf-8\"?>\n\u003Cbrowserconfig>\n   \u003Cmsapplication>\n     \u003Ctile>\n        \u003Csquare70x70logo src=\"small.png\"\u002F>\n        \u003Csquare150x150logo src=\"medium.png\"\u002F>\n        \u003Cwide310x150logo src=\"wide.png\"\u002F>\n        \u003Csquare310x310logo src=\"large.png\"\u002F>\n     \u003C\u002Ftile>\n   \u003C\u002Fmsapplication>\n\u003C\u002Fbrowserconfig>\n```\n\n\u003C!-- prettier-ignore-start -->\n- 📖 [Browser configuration schema reference](https:\u002F\u002Flearn.microsoft.com\u002Fen-us\u002Fprevious-versions\u002Fwindows\u002Finternet-explorer\u002Fie-developer\u002Fplatform-apis\u002Fdn320426(v=vs.85))\n\u003C!-- prettier-ignore-end -->\n\n- [ ] **Canonical:** ![Medium][medium_img] Use `rel=\"canonical\"` to avoid duplicate content.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003C!-- Helps prevent duplicate content issues -->\n\u003Clink rel=\"canonical\" href=\"http:\u002F\u002Fexample.com\u002F2017\u002F09\u002Fa-new-article-to-read.html\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- 📖\n  [Use canonical URLs - Search Console Help - Google Support](https:\u002F\u002Fsupport.google.com\u002Fwebmasters\u002Fanswer\u002F139066?hl=en)\n- 📖\n  [5 common mistakes with rel=canonical - Google Webmaster Blog](https:\u002F\u002Fwebmasters.googleblog.com\u002F2013\u002F04\u002F5-common-mistakes-with-relcanonical.html)\n\n### HTML tags\n\n- [ ] **Language attribute:** ![High][high_img] The `lang` attribute of your website is specified and related to the\n      language of the current page.\n\n```html\n\u003Chtml lang=\"en\">\u003C\u002Fhtml>\n```\n\n- [ ] **Direction attribute:** ![Medium][medium_img] The direction of lecture is specified on the html tag (It can be\n      used on another HTML tag).\n\n```html\n\u003Chtml dir=\"rtl\">\n  \u003C!-- ... -->\n\u003C\u002Fhtml>\n```\n\n- 📖 [dir - HTML - MDN](https:\u002F\u002Fdeveloper.mozilla.org\u002Fen-US\u002Fdocs\u002FWeb\u002FHTML\u002FGlobal_attributes\u002Fdir)\n\n- [ ] **Alternate language:** ![Low][low_img] The language tag of your website is specified and related to the language\n      of the current page.\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003Clink rel=\"alternate\" href=\"https:\u002F\u002Fes.example.com\u002F\" hreflang=\"es\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- [ ] **x-default:** ![Low][low_img] The language tag of your website for international landing pages.\n\n```html\n\u003Clink rel=\"alternate\" href=\"https:\u002F\u002Fexample.com\u002F\" hreflang=\"x-default\" \u002F>\n```\n\n- 📖 [x-default - Google](https:\u002F\u002Fwebmasters.googleblog.com\u002F2013\u002F04\u002Fx-default-hreflang-for-international-pages.html)\n\n- [ ] **Conditional comments:** ![Low][low_img] Conditional comments are present for IE if needed.\n\n- 📖\n  [About conditional comments (Internet Explorer) - MSDN - Microsoft](\u003Chttps:\u002F\u002Fmsdn.microsoft.com\u002Fen-us\u002Flibrary\u002Fms537512(v=vs.85).aspx>)\n\n- [ ] **RSS feed:** ![Low][low_img] If your project is a blog or has articles, an RSS link was provided.\n\n- [ ] **CSS Critical:** ![Medium][medium_img] The CSS critical (or \"above the fold\") collects all the CSS used to render\n      the visible portion of the page. It is embedded before your principal CSS call and between `\u003Cstyle>\u003C\u002Fstyle>` in a\n      single line (minified).\n\n- 🛠 [Critical by Addy Osmani on GitHub](https:\u002F\u002Fgithub.com\u002Faddyosmani\u002Fcritical) automates this.\n\n- [ ] **CSS order:** ![High][high_img] All CSS files are loaded before any JavaScript files in the `\u003Chead>`. (Except the\n      case where sometimes JS files are loaded asynchronously on top of your page).\n\n### Social meta\n\nVisualize and generate automatically our social meta tags with [Meta Tags](https:\u002F\u002Fmetatags.io\u002F)\n\n**_Facebook OG_** and **_Twitter Cards_** are, for any website, highly recommended. The other social media tags can be\nconsidered if you target a particular presence on those and want to ensure the display.\n\n- [ ] **Facebook Open Graph:** ![Low][low_img] All Facebook Open Graph (OG) are tested and no one is missing or with\n      false information. Images need to be at least 600 x 315 pixels, although 1200 x 630 pixels is recommended.\n\n\u003C!-- prettier-ignore-start -->\n> [!NOTE]\n> 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.\n\u003C!-- prettier-ignore-end -->\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003Cmeta property=\"og:type\" content=\"website\">\n\u003Cmeta property=\"og:url\" content=\"https:\u002F\u002Fexample.com\u002Fpage.html\">\n\u003Cmeta property=\"og:title\" content=\"Content Title\">\n\u003Cmeta property=\"og:image\" content=\"https:\u002F\u002Fexample.com\u002Fimage.jpg\">\n\u003Cmeta property=\"og:description\" content=\"Description Here\" \u002F>\n\u003Cmeta property=\"og:site_name\" content=\"Site Name\">\n\u003Cmeta property=\"og:locale\" content=\"en_US\">\n\u003C!-- Next tags are optional but recommended -->\n\u003Cmeta property=\"og:image:width\" content=\"1200\">\n\u003Cmeta property=\"og:image:height\" content=\"630\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- 📖 [A Guide to Sharing for Webmasters](https:\u002F\u002Fdevelopers.facebook.com\u002Fdocs\u002Fsharing\u002Fwebmasters\u002F)\n- 📖 [Best Practices - Sharing](https:\u002F\u002Fdevelopers.facebook.com\u002Fdocs\u002Fsharing\u002Fbest-practices\u002F)\n- 🛠 Test your page with the [Facebook OG testing](https:\u002F\u002Fdevelopers.facebook.com\u002Ftools\u002Fdebug\u002F)\n\n- [ ] **Twitter Card:** ![Low][low_img]\n\n\u003C!-- prettier-ignore-start -->\n```html\n\u003Cmeta name=\"twitter:card\" content=\"summary\">\n\u003Cmeta name=\"twitter:site\" content=\"@site_account\">\n\u003Cmeta name=\"twitter:creator\" content=\"@individual_account\">\n\u003Cmeta name=\"twitter:url\" content=\"https:\u002F\u002Fexample.com\u002Fpage.html\">\n\u003Cmeta name=\"twitter:title\" content=\"Content Title\">\n\u003Cmeta name=\"twitter:description\" content=\"Content description less than 200 characters\">\n\u003Cmeta name=\"twitter:image\" content=\"https:\u002F\u002Fexample.com\u002Fimage.jpg\">\n```\n\u003C!-- prettier-ignore-end -->\n\n- 📖\n  [Getting started with cards — Twitter Developers](https:\u002F\u002Fdeveloper.twitter.com\u002Fen\u002Fdocs\u002Ftweets\u002Foptimize-with-cards\u002Fguides\u002Fgetting-started)\n- 🛠 Test your page with the [Twitter card validator](https:\u002F\u002Fcards-dev.twitter.com\u002Fvalidator)\n\n**[⬆ back to top](#-table-of-contents)**\n\n## HTML\n\n### Best practices\n\n- [ ] **HTML5 Semantic Elements:** ![High][high_img] HTML5 Semantic Elements are used appropriately (header, section,\n      footer, main...).\n\n- 📖 [HTML Reference](http:\u002F\u002Fhtmlreference.io\u002F)\n\n- [ ] **Error pages:** ![High][high_img] Error 404 page and 5xx exist. Remember that the 5xx error pages need to have\n      their CSS integrated (no external call on the current server).\n\n- [ ] **Noopener:** ![Medium][medium_img] In case you are using external links with `target=\"_blank\"`, your link should\n      have a `rel=\"noopener\"` attribute to prevent tab nabbing. If you need to support older versions of Firefox, use\n      `rel=\"noopener noreferrer\"`.\n\n- 📖 [About rel=noopener](https:\u002F\u002Fmathiasbynens.github.io\u002Frel-noopener\u002F)\n\n- [ ] **Clean up comments:** ![Low][low_img] Unnecessary code needs to be removed before sending the page to production.\n\n### HTML testing\n\n- [ ] **W3C compliant:** ![High][high_img] All pages need to be tested with the W3C validator to identify possible\n      issues in the HTML code.\n\n- 🛠 [W3C validator](https:\u002F\u002Fvalidator.w3.org\u002F)\n\n- [ ] **HTML Lint:** ![High][high_img] I use tools to help me analyze any issues I could have on my HTML code.\n\n- 🛠 [Dirty markup](https:\u002F\u002Fwww.10bestdesign.com\u002Fdirtymarkup\u002F)\n\n- 🛠 [webhint](https:\u002F\u002Fwebhint.io\u002F)\n\n- [ ] **Link checker:** ![High][high_img] There are no broken links in my page, verify that you don't have any 404\n      error.\n\n- 🛠 [W3C Link Checker](https:\u002F\u002Fvalidator.w3.org\u002Fchecklink)\n\n- [ ] **Adblockers test:** ![Medium][medium_img] Your website shows your content correctly with adblockers enabled (You\n      can provide a message encouraging people to disable their adblocker).\n\n- 📖\n  [Use AdBlocking in your Dev Environment](https:\u002F\u002Fandreicioara.com\u002Fuse-adblocking-in-your-dev-environment-48db500d9b86)\n\n**[⬆ back to top](#-table-of-contents)**\n\n---\n\n## Webfonts\n\n> [!NOTE]\n> Using web fonts may cause Flash Of Unstyled Text\u002FFlash Of Invisible Text - consider having fallback fonts\n> and\u002For utilizing web font loaders to control behavior.\n\n- 📖 [Google Technical considerations about webfonts](https:\u002F\u002Fdevelopers.google.com\u002Ffonts\u002Fdocs\u002Ftechnical_considerations)\n\n- [ ] **Webfont format:** ![High][high_img] WOFF, WOFF2 and TTF are supported by all modern browsers.\n\n- 📖 [WOFF - Web Open Font Format - Caniuse](https:\u002F\u002Fcaniuse.com\u002Fwoff).\n- 📖 [WOFF 2.0 - Web Open Font Format - Caniuse](https:\u002F\u002Fcaniuse.com\u002Fwoff2).\n- 📖 [TTF\u002FOTF - TrueType and OpenType font support](https:\u002F\u002Fcaniuse.com\u002Fttf)\n- 📖 [Using @font-face - CSS-Tricks](https:\u002F\u002Fcss-tricks.com\u002Fsnippets\u002Fcss\u002Fusing-font-face\u002F)\n\n- [ ] **Webfont size:** ![High][high_img] Webfont sizes don't exceed 2 MB (all variants included).\n\n- [ ] **Webfont loader:** ![Low][low_img] Control loading behavior with a webfont loader\n\n- 🛠 [Typekit Web Font Loader](https:\u002F\u002Fgithub.com\u002Ftypekit\u002Fwebfontloader)\n\n**[⬆ back to top](#-table-of-contents)**\n\n---\n\n## CSS\n\n> **Notes:** Take a look at [CSS guidelines](https:\u002F\u002Fcssguidelin.es\u002F) and [Sass Guidelines](https:\u002F\u002Fsass-guidelin.es\u002F)\n> followed by most Front-End developers. If you have a doubt about CSS properties, you can visit\n> [CSS Reference](http:\u002F\u002Fcssreference.io\u002F). There is also a short [Code Guide](http:\u002F\u002Fcodeguide.co\u002F) for consistency.\n\n- [ ] **Responsive Web Design:** ![High][high_img] The website is using responsive web design.\n- [ ] **CSS Print:** ![Medium][medium_img] A print stylesheet is provided and is correct on each page.\n- [ ] **Preprocessors:** ![Low][low_img] Your project is using a CSS preprocessor (e.g [Sass](http:\u002F\u002Fsass-lang.com\u002F),\n      [Less](http:\u002F\u002Flesscss.org\u002F), [Stylus](http:\u002F\u002Fstylus-lang.com\u002F)).\n- [ ] **Unique ID:** ![High][high_img] If IDs are used, they are unique to a page.\n- [ ] **Reset CSS:** ![High][high_img] A CSS reset (reset, normalize or reboot) is used and up to date. _(If you are\n      using a CSS Framework like Bootstrap or Foundation, a Normalize is already included into it.)_\n\n- 📖 [Reset.css](https:\u002F\u002Fmeyerweb.com\u002Feric\u002Ftools\u002Fcss\u002Freset\u002F)\n- 📖 [Normalize.css](https:\u002F\u002Fnecolas.github.io\u002Fnormalize.css\u002F)\n- 📖 [Reboot](https:\u002F\u002Fgetbootstrap.com\u002Fdocs\u002F4.0\u002Fcontent\u002Freboot\u002F)\n\n- [ ] **JS prefix:** ![Low][low_img] All classes (or id- used in JavaScript files) begin with **js-** and are not styled\n      into the CSS files.\n\n```html\n\u003Cdiv id=\"js-slider\" class=\"my-slider\">\n  \u003C!-- Or -->\n  \u003Cdiv id=\"id-used-by-cms\" class=\"js-slider my-slider\">\u003C\u002Fdiv>\n\u003C\u002Fdiv>\n```\n\n- [ ] **embedded or inline CSS:** ![High][high_img] Avoid at all cost embedding CSS in `\u003Cstyle>` tags or using inline\n      CSS: only use for valid reasons (e.g. background-image for slider, critical CSS).\n- [ ] **Vendor prefixes:** ![High][high_img] CSS vendor prefixes are used and are generated accordingly with your\n      browser support compatibility.\n\n- 🛠 [Autoprefixer CSS online](https:\u002F\u002Fautoprefixer.github.io\u002F)\n\n### Performance\n\n- [ ] **Concatenation:** ![High][high_img] CSS files are concatenated in a single file _(Not for HTTP\u002F2)_.\n- [ ] **Minification:** ![High][high_img] All CSS files are minified.\n- [ ] **Non-blocking:** ![Medium][medium_img] CSS files need to be non-blocking to prevent the DOM from taking time to\n      load.\n\n- 📖 [loadCSS by filament group](https:\u002F\u002Fgithub.com\u002Ffilamentgroup\u002FloadCSS)\n- 📖 [Example of preload CSS using loadCSS](https:\u002F\u002Fgist.github.com\u002Fthedaviddias\u002Fc24763b82b9991e53928e66a0bafc9bf)\n\n- [ ] **Unused CSS:** ![Low][low_img] Remove unused CSS.\n\n- 🛠 [UnCSS Online](https:\u002F\u002Funcss-online.com\u002F)\n- 🛠 [PurifyCSS](https:\u002F\u002Fgithub.com\u002Fpurifycss\u002Fpurifycss)\n- 🛠 [PurgeCSS](https:\u002F\u002Fgithub.com\u002FFullHuman\u002Fpurgecss)\n- 🛠 [Chrome DevTools Coverage](https:\u002F\u002Fdeveloper.chrome.com\u002Fdocs\u002Fdevtools\u002Fcoverage\u002F)\n\n### CSS testing\n\n- [ ] **Stylelint:** ![High][high_img] All CSS or SCSS files are without any errors.\n\n- 🛠 [stylelint, a CSS linter](https:\u002F\u002Fstylelint.io\u002F)\n- 📖 [Sass guidelines](https:\u002F\u002Fsass-guidelin.es\u002F)\n\n- [ ] **Responsive web design:** ![High][high_img] All pages were tested at the following breakpoints: 320px, 768px,\n      1024px (can be more \u002F different according to your analytics). **Responsive Checker -**\n\n  - 🛠 [Am I Responsive?](http:\u002F\u002Fami.responsivedesign.is\u002F)\n  - 🛠 [Mobile Friendly Test](https:\u002F\u002Fsearch.google.com\u002Ftest\u002Fmobile-friendly)\n  - 🛠 [Responsive Website Design Tester](https:\u002F\u002Fresponsivedesignchecker.com\u002F)\n\n- [ ] **CSS Validator:** ![Medium][medium_img] The CSS was tested and pertinent errors were corrected.\n\n- 🛠 [CSS Validator](https:\u002F\u002Fjigsaw.w3.org\u002Fcss-validator\u002F)\n\n- [ ] **Desktop Browsers:** ![High][high_img] All pages were tested on all current desktop browsers (Safari, Firefox,\n      Chrome, Internet Explorer, EDGE...).\n- [ ] **Mobile Browsers:** ![High][high_img] All pages were tested on all current mobile browsers (Native browser,\n      Chrome, Safari...).\n- [ ] **OS:** ![High][high_img] All pages were tested on all current OS (Windows, Android, iOS, Mac...).\n\n- [ ] **Design fidelity:** ![Low][low_img] Depending on the project and the quality of the creatives, you may be asked\n      to be close to the design. You can use some tools to compare creatives with your code implementation and ensure\n      consistency.\n\n> [Pixel Perfect - Chrome Extension](https:\u002F\u002Fchrome.google.com\u002Fwebstore\u002Fdetail\u002Fperfectpixel-by-welldonec\u002Fdkaagdgjmgdmbnecmcefdhjekcoceebi?hl=en)\n\n- [ ] **Reading direction:** ![High][high_img] All pages need to be tested for LTR and RTL languages if they need to be\n      supported.\n\n- 📖\n  [Building RTL-Aware Web Apps & Websites: Part 1 - Mozilla Hacks](https:\u002F\u002Fhacks.mozilla.org\u002F2015\u002F09\u002Fbuilding-rtl-aware-web-apps-and-websites-part-1\u002F)\n- 📖\n  [Building RTL-Aware Web Apps & Websites: Part 2 - Mozilla Hacks](https:\u002F\u002Fhacks.mozilla.org\u002F2015\u002F10\u002Fbuilding-rtl-aware-web-apps-websites-part-2\u002F)\n\n**[⬆ back to top](#-table-of-contents)**\n\n---\n\n## Images\n\n> **Notes:** For a complete understanding of image optimization, check the free ebook\n> **[Essential Image Optimization](https:\u002F\u002Fimages.guide\u002F)** from Addy Osmani.\n\n### Best practices\n\n- [ ] **Optimization:** ![High][high_img] All images are optimized to be rendered in the browser. WebP format could be\n      used for critical pages (like Homepage).\n\n- 🛠 [Imagemin](https:\u002F\u002Fgithub.com\u002Fimagemin\u002Fimagemin)\n- 🛠 Use [ImageOptim](https:\u002F\u002Fimageoptim.com\u002F) to optimise your images for free.\n- 🛠 Use [KeyCDN Image Processing](https:\u002F\u002Fwww.keycdn.com\u002Fsupport\u002Fimage-processing) for image optimization in real time.\n- 🛠 [TinyPNG](https:\u002F\u002Ftinypng.com\u002F) optimises png, apng (animated png) and jpg images with very small loss in quality.\n  Free and paid version available.\n- 🛠 [ZorroSVG](http:\u002F\u002Fquasimondo.com\u002FZorroSVG\u002F) jpg-like compression for transparent images using svg masking.\n- 🛠 [SVGO](https:\u002F\u002Fgithub.com\u002Fsvg\u002Fsvgo) a Nodejs-based tool for optimizing SVG vector graphics files.\n- 🛠 [SVGOMG](https:\u002F\u002Fjakearchibald.github.io\u002Fsvgomg\u002F) a web-based GUI version of SVGO for optimising your svgs online.\n\n- [ ] **Picture\u002FSrcset:** ![Medium][medium_img] You use picture\u002Fsrcset to provide the most appropriate image for the\n      current viewport of the user.\n\n- 📖 [How to Build Responsive Images with srcset](https:\u002F\u002Fwww.sitepoint.com\u002Fhow-to-build-responsive-images-with-srcset\u002F)\n\n- [ ] **Retina:** ![Low][low_img] You provide layout images 2x or 3x, support retina display.\n- [ ] **Sprite:** ![Medium][medium_img] Small images are in a sprite file (in the case of icons, they can be in an SVG\n      sprite image).\n- [ ] **Width and Height:** ![High][high_img] Set `width` and `height` attributes on `\u003Cimg>` if the final rendered image\n      size is known (can be omitted for CSS sizing).\n- [ ] **Alternative text:** ![High][high_img] All `\u003Cimg>` have an alternative text which describes the image visually.\n\n- 📖 [Alt-texts: The Ultimate Guide](https:\u002F\u002Faxesslab.com\u002Falt-texts\u002F)\n\n- [ ] **Lazy loading:** ![Medium][medium_img] Images are lazyloaded (A noscript fallback is always provided).\n  - 🛠 [Native lazy loading polyfill](https:\u002F\u002Fgithub.com\u002Fmfranzke\u002Floading-attribute-polyfill\u002F)\n\n**[⬆ back to top](#-table-of-contents)**\n\n---\n\n## JavaScript\n\n### Best practices\n\n- [ ] **JavaScript Inline:** ![High][high_img] You don't have any JavaScript code inline (mixed with your HTML code).\n- [ ] **Concatenation:** ![High][high_img] JavaScript files are concatenated.\n- [ ] **Minification:** ![High][high_img] JavaScript files are minified (you can add the `.min` suffix).\n\n- 📖 [Minify Resources (HTML, CSS, and JavaScript)](https:\u002F\u002Fdevelopers.google.com\u002Fspeed\u002Fdocs\u002Finsights\u002FMinifyResources)\n\n- [ ] **JavaScript security:** ![High][high_img]\n\n- 📖\n  [Guidelines for Developing Secure Applications Utilizing JavaScript](https:\u002F\u002Fwww.owasp.org\u002Findex.php\u002FDOM_based_XSS_Prevention_Cheat_Sheet#Guidelines_for_Developing_Secure_Applications_Utilizing_JavaScript)\n\n- [ ] **`noscript` tag:** ![Medium][medium_img] Use `\u003Cnoscript>` tag in the HTML body if a script type on the page is\n      unsupported or if scripting is currently turned off in the browser. This will be helpful in client-side rendering\n      heavy apps such as React.js, see\n      [examples](https:\u002F\u002Fwebdesign.tutsplus.com\u002Ftutorials\u002Fquick-tip-dont-forget-the-noscript-element--cms-25498).\n\n```html\n\u003Cnoscript> You need to enable JavaScript to run this app. \u003C\u002Fnoscript>\n```\n\n- [ ] **Non-blocking:** ![Medium][medium_img] JavaScript files are loaded asynchronously using `async` or deferred using\n      `defer` attribute.\n\n- 📖 [Remove Render-Blocking JavaScript](https:\u002F\u002Fdevelopers.google.com\u002Fspeed\u002Fdocs\u002Finsights\u002FBlockingJS)\n\n- [ ] **Optimized and updated JS libraries:** ![Medium][medium_img] All JavaScript libraries used in your project are\n      necessary (prefer Vanilla Javascript for simple functionalities), updated to their latest version and don't\n      overwhelm your JavaScript with unnecessary methods.\n\n- 📖 [You may not need jQuery](http:\u002F\u002Fyoumightnotneedjquery.com\u002F)\n- 📖 [Vanilla JavaScript for building powerful web applications](https:\u002F\u002Fplainjs.com\u002F)\n\n- [ ] **Modernizr:** ![Low][low_img] If you need to target some specific features you can use a custom Modernizr to add\n      classes in your `\u003Chtml>` tag.\n\n- 🛠 [Customize your Modernizr](https:\u002F\u002Fmodernizr.com\u002Fdownload?setclasses)\n\n### JavaScript testing\n\n- [ ] **ESLint:** ![High][high_img] No errors are flagged by ESLint (based on your configuration or standards rules).\n\n- 📖 [ESLint - The pluggable linting utility for JavaScript and JSX](https:\u002F\u002Feslint.org\u002F)\n\n**[⬆ back to top](#-table-of-contents)**\n\n---\n\n## Security\n\n### Scan and check your web site\n\n- [securityheaders.io](https:\u002F\u002Fsecurityheaders.io\u002F)\n- [Observatory by Mozilla](https:\u002F\u002Fobservatory.mozilla.org\u002F)\n\n### Best practices\n\n- [ ] **HTTPS:** ![High][high_img] HTTPS is used on every page and for all external content (plugins, images...).\n\n- 🛠 [Let's Encrypt - Free SSL\u002FTLS Certificates](https:\u002F\u002Fletsencrypt.org\u002F)\n- 🛠 [Free SSL Server Test](https:\u002F\u002Fwww.ssllabs.com\u002Fssltest\u002Findex.html)\n- 📖 [Strict Transport Security](http:\u002F\u002Fcaniuse.com\u002F#feat=stricttransportsecurity)\n\n- [ ] **HTTP Strict Transport Security (HSTS):** ![Medium][medium_img] The HTTP header is set to\n      'Strict-Transport-Security'.\n\n- 🛠 [Check HSTS preload status and eligibility](https:\u002F\u002Fhstspreload.org\u002F)\n- 📖\n  [HTTP Strict Transport Security Cheat Sheet - OWASP](https:\u002F\u002Fcheatsheetseries.owasp.org\u002Fcheatsheets\u002FHTTP_Strict_Transport_Security_Cheat_Sheet.html)\n- 📖\n  [Transport Layer Protection Cheat Sheet - OWASP](https:\u002F\u002Fcheatsheetseries.owasp.org\u002Fcheatsheets\u002FTransport_Layer_Protection_Cheat_Sheet.html)\n\n- [ ] **Cross Site Request Forgery (CSRF):** ![High][high_img] You ensure that requests made to your server-side are\n      legitimate and originate from your website \u002F app to prevent CSRF attacks.\n\n- 📖\n  [Cross-Site Request Forgery (CSRF) Prevention Cheat Sheet - OWASP](https:\u002F\u002Fcheatsheetseries.owasp.org\u002Fcheatsheets\u002FCross-Site_Request_Forgery_Prevention_Cheat_Sheet.html)\n\n- [ ] **Cross Site Scripting (XSS):** ![High][high_img] Your page or website is free from XSS possible issues.\n\n- 📖\n  [XSS (Cross Site Scripting) Prevention Cheat Sheet - OWASP](https:\u002F\u002Fcheatsheetseries.owasp.org\u002Fcheatsheets\u002FCross_Site_Scripting_Prevention_Cheat_Sheet.html)\n- 📖\n  [DOM based XSS Prevention Cheat Sheet - OWASP](https:\u002F\u002Fcheatsheetseries.owasp.org\u002Fcheatsheets\u002FDOM_based_XSS_Prevention_Cheat_Sheet.html)\n\n- [ ] **Content Type Options:** ![Medium][medium_img] Prevents Google Chrome and Internet Explorer from trying to\n      mime-sniff the content-type of a response away from the one being declared by the server.\n\n- 📖\n  [X-Content-Type-Options - Scott Helme](https:\u002F\u002Fscotthelme.co.uk\u002Fhardening-your-http-response-headers\u002F#x-content-type-options)\n\n- [ ] **X-Frame-Options (XFO):** ![Medium][medium_img] Protects your visitors against clickjacking attacks.\n\n- 📖 [X-Frame-Options - Scott Helme](https:\u002F\u002Fscotthelme.co.uk\u002Fhardening-your-http-response-headers\u002F#x-frame-options)\n- 📖 [RFC7034 - HTTP Header Field X-Frame-Options](https:\u002F\u002Ftools.ietf.org\u002Fhtml\u002Frfc7034)\n\n- [ ] **Content Security Policy:** ![Medium][medium_img] Defines how content is loaded on your site and from where it is\n      permitted to be loaded. Can also be used to protect against clickjacking attacks.\n\n- 📖\n  [Content Security Policy - An Introduction - Scott Helme](https:\u002F\u002Fscotthelme.co.uk\u002Fcontent-security-policy-an-introduction\u002F)\n- 📖 [CSP Cheat Sheet - Scott Helme](https:\u002F\u002Fscotthelme.co.uk\u002Fcsp-cheat-sheet\u002F)\n- 📖 [CSP Cheat Sheet - OWASP](https:\u002F\u002Fcheatsheetseries.owasp.org\u002Fcheatsheets\u002FContent_Security_Policy_Cheat_Sheet.html)\n- 📖 [Content Security Policy Reference](https:\u002F\u002Fcontent-security-policy.com\u002F)\n\n**[⬆ back to top](#-table-of-contents)**\n\n---\n\n## Performance\n\n### Best practices\n\n- [ ] **Goals to achieve:** ![Medium][medium_img] Your pages should reach these goals:\n\n  - First Meaningful Paint under 1 second\n  - Time To Interactive under 5 seconds for the \"average\" configuration (a $200 Android on a slow 3G network with 400ms\n    RTT and 400kbps transfer speed) and under 2 seconds for repeat visits\n  - Critical file size under 170Kb gzipped\n\n- 🛠 [Website Page Analysis](https:\u002F\u002Ftools.pingdom.com)\n- 🛠 [WebPageTest](https:\u002F\u002Fwww.webpagetest.org\u002F)\n- 📖 [Size Limit: Make the Web lighter](https:\u002F\u002Fevilmartians.com\u002Fchronicles\u002Fsize-limit-make-the-web-lighter)\n\n- [ ] **Minified HTML:** ![Medium][medium_img] Your HTML is minified.\n\n- [ ] **Lazy loading:** ![Medium][medium_img] Images, scripts and CSS need to be lazy loaded to improve the response\n      time of the current page (See details in their respective sections).\n\n- [ ] **Cookie size:** ![Medium][medium_img] If you are using cookies be sure each cookie doesn't exceed 4096 bytes and\n      your domain name doesn't have more than 20 cookies.\n\n- 📖 [Cookie specification: RFC 6265](https:\u002F\u002Ftools.ietf.org\u002Fhtml\u002Frfc6265)\n- 📖 [Cookies](https:\u002F\u002Fdeveloper.mozilla.org\u002Fen-US\u002Fdocs\u002FWeb\u002FHTTP\u002FCookies)\n- 🛠 [Browser Cookie Limits](http:\u002F\u002Fbrowsercookielimits.squawky.net\u002F)\n\n- [ ] **Third party components:** ![Medium][medium_img] Third party iframes or components relying on external JS (like\n      sharing buttons) are replaced by static components when possible, thus limiting calls to external APIs and keeping\n      your user's activity private.\n\n- 🛠 [Simple sharing buttons generator](https:\u002F\u002Fsimplesharingbuttons.com\u002F)\n\n### Preparing upcoming requests\n\n- 📖 [Explanation of the following techniques](https:\u002F\u002Fcss-tricks.com\u002Fprefetching-preloading-prebrowsing\u002F)\n\n- [ ] **DNS resolution:** ![Low][low_img] DNS of third-party services that may be needed are resolved in advance during\n      idle time using `dns-prefetch`.\n\n```html\n\u003Clink rel=\"dns-prefetch\" href=\"https:\u002F\u002Fexample.com\" \u002F>\n```\n\n- [ ] **Preconnection:** ![Low][low_img] DNS lookup, TCP handshake and TLS negotiation with services that will be needed\n      soon is done in advance during idle time using `preconnect`.\n\n```html\n\u003Clink rel=\"preconnect\" href=\"https:\u002F\u002Fexample.com\" \u002F>\n```\n\n- [ ] **Prefetching:** ![Low][low_img] Resources that will be needed soon (e.g. lazy loaded images) are requested in\n      advance during idle time using `prefetch`.\n\n```html\n\u003Clink rel=\"prefetch\" href=\"image.png\" \u002F>\n```\n\n- [ ] **Preloading:** ![Low][low_img] Resources needed in the current page (e.g. scripts placed at the end of `\u003Cbody>`)\n      in advance using `preload`.\n\n```html\n\u003Clink rel=\"preload\" href=\"app.js\" \u002F>\n```\n\n- 📖\n  [Difference between prefetch and preload](https:\u002F\u002Fmedium.com\u002Freloading\u002Fpreload-prefetch-and-priorities-in-chrome-776165961bbf)\n\n### Performance testing\n\n- [ ] **Google PageSpeed:** ![High][high_img] All your pages were tested (not only the homepage) and have a score of at\n      least 90\u002F100.\n\n- 🛠 [Google PageSpeed](https:\u002F\u002Fdevelopers.google.com\u002Fspeed\u002Fpagespeed\u002Finsights\u002F)\n- 🛠 [Test your mobile speed with Google](https:\u002F\u002Ftestmysite.withgoogle.com)\n- 🛠 [WebPagetest - Website Performance and Optimization Test](https:\u002F\u002Fwww.webpagetest.org\u002F)\n- 🛠 [GTmetrix - Website speed and performance optimization](https:\u002F\u002Fgtmetrix.com\u002F)\n- 🛠 [Speedrank - Improve the performance of your website](https:\u002F\u002Fspeedrank.app\u002F)\n\n**[⬆ back to top](#-table-of-contents)**\n\n## Accessibility\n\n> **Notes:** You can watch the playlist\n> [A11ycasts with Rob Dodson](https:\u002F\u002Fwww.youtube.com\u002Fplaylist?list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g) 📹\n\n### Best practices\n\n- [ ] **Progressive enhancement:** ![Medium][medium_img] Major functionality like main navigation and search should work\n      without JavaScript enabled.\n\n- 📖 [Enable \u002F Disable JavaScript in Chrome Developer Tools](https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=kBmvq2cE0D8)\n\n- [ ] **Color contrast:** ![Medium][medium_img] Color contrast should at least pass WCAG AA (AAA for mobile).\n\n- 🛠 [Contrast ratio](https:\u002F\u002Fwww.siegemedia.com\u002Fcontrast-ratio)\n\n#### Headings\n\n- [ ] **H1:** ![High][high_img] All pages have an H1 which is not the title of the website.\n- [ ] **Headings:** ![High][high_img] Headings should be used properly and in the right order (H1 to H6).\n\n- 📹\n  [Why headings and landmarks are so important -- A11ycasts #18](https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=vAAzdi1xuUY&index=9&list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g)\n\n### Semantics\n\n- [ ] **Specific HTML5 input types are used:** ![Medium][medium_img] This is especially important for mobile devices\n      that show customized keypads and widgets for different types.\n\n- 📖 [Mobile Input Types](http:\u002F\u002Fmobileinputtypes.com\u002F)\n\n### Form\n\n- [ ] **Label:** ![High][high_img] A label is associated with each input form element. In case a label can't be\n      displayed, use `aria-label` instead.\n\n- 📖\n  [Using the aria-label attribute - MDN](https:\u002F\u002Fdeveloper.mozilla.org\u002Fen-US\u002Fdocs\u002FWeb\u002FAccessibility\u002FARIA\u002FAttributes\u002Faria-label)\n\n### Accessibility testing\n\n- [ ] **Accessibility standards testing:** ![High][high_img] Use the WAVE tool to test if your page respects the\n      accessibility standards.\n\n- 🛠 [Wave testing](http:\u002F\u002Fwave.webaim.org\u002F)\n\n- [ ] **Keyboard navigation:** ![High][high_img] Test your website using only your keyboard in a previsible order. All\n      interactive elements are reachable and usable.\n- [ ] **Screen-reader:** ![Medium][medium_img] All pages were tested in a screen-reader (VoiceOver, ChromeVox, NVDA or\n      Lynx).\n- [ ] **Focus style:** ![High][high_img] If the focus is disabled, it is replaced by visible state in CSS.\n\n- 📹\n  [Managing Focus - A11ycasts #22](https:\u002F\u002Fwww.youtube.com\u002Fwatch?v=srLRSQg6Jgg&index=5&list=PLNYkxOF6rcICWx0C9LVWWVqvHlYJyqw7g)\n\n**[⬆ back to top](#-table-of-contents)**\n\n## SEO\n\n- [ ] **Google Analytics:** ![Low][low_img] Google Analytics is installed and correctly configured.\n\n- 🛠 [Google Analytics](https:\u002F\u002Fanalytics.google.com\u002Fanalytics\u002Fweb\u002F)\n- 🛠 [GA Checker (and others)](http:\u002F\u002Fwww.gachecker.com\u002F)\n\n- [ ] **Search Console:** ![Low][low_img] Search Console is installed and correctly configured. It is a free service\n      offered by Google that helps you monitor, maintain, and troubleshoot your site's presence in Google Search\n      results.\n\n- 🛠 [Search Console](https:\u002F\u002Fsearch.google.com\u002Fsearch-console\u002Fabout)\n\n- [ ] **Headings logic:** ![Medium][medium_img] Heading text helps to understand the content in the current page.\n\n- 🛠 [Tota11y, tab Headings](http:\u002F\u002Fkhan.github.io\u002Ftota11y\u002F#Try-it)\n\n- [ ] **sitemap.xml:** ![High][high_img] A sitemap.xml exists and was submitted to Google Search Console (previously\n      Google Webmaster Tools).\n\n- 🛠 [Sitemap generator](https:\u002F\u002Fwebsiteseochecker.com\u002Fhtml-sitemap-generator\u002F)\n\n- [ ] **robots.txt:** ![High][high_img] The robots.txt is not blocking webpages.\n\n- 🛠 Test your robots.txt with [Google Robots Testing Tool](https:\u002F\u002Fwww.google.com\u002Fwebmasters\u002Ftools\u002Frobots-testing-tool)\n\n- [ ] **Structured Data:** ![High][high_img] Pages using structured data are tested and are without errors. Structured\n      data helps crawlers understand the content in the current page.\n\n- 📖\n  [Introduction to Structured Data - Search - Google Developers](https:\u002F\u002Fdevelopers.google.com\u002Fsearch\u002Fdocs\u002Fguides\u002Fintro-structured-data)\n- 📖 [JSON-LD](https:\u002F\u002Fjson-ld.org\u002F)\n- 📖 [Microdata](https:\u002F\u002Fwww.w3.org\u002FTR\u002Fmicrodata\u002F)\n- 🛠 Test your page with the [Rich Results Test](https:\u002F\u002Fsearch.google.com\u002Ftest\u002Frich-results)\n- 🛠 Complete list of vocabularies that can be used as structured data.\n  [Schema.org Full Hierarchy](http:\u002F\u002Fschema.org\u002Fdocs\u002Ffull.html)\n\n- [ ] **Sitemap HTML:** ![Medium][medium_img] An HTML sitemap is provided and is accessible via a link in the footer of\n      your website.\n\n- 📖 [Sitemap guidelines - Google Support](https:\u002F\u002Fsupport.google.com\u002Fwebmasters\u002Fanswer\u002F183668?hl=en)\n\n**[⬆ back to top](#-table-of-contents)**\n\n## Translations\n\nThe Front-End Checklist is also available in other languages. Thanks for all translators and their awesome work!\n\n- 🇯🇵 Japanese: [miya0001\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fmiya0001\u002FFront-End-Checklist)\n- 🇪🇸 Spanish: [eoasakura\u002FFront-End-Checklist-ES](https:\u002F\u002Fgithub.com\u002Feoasakura\u002FFront-End-Checklist-ES)\n- 🇨🇳 Chinese: [JohnsenZhou\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002FJohnsenZhou\u002FFront-End-Checklist)\n- 🇰🇷 Korean: [kesuskim\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fkesuskim\u002FFront-End-Checklist)\n- 🇧🇷 Portuguese: [jcezarms\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fjcezarms\u002FFront-End-Checklist)\n- 🇻🇳 Vietnamese: [euclid1990\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Feuclid1990\u002FFront-End-Checklist)\n- 🇹🇼 Traditional Chinese: [EngineLin\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002FEngineLin\u002FFront-End-Checklist)\n- 🇫🇷 French: [ynizon\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fynizon\u002FFront-End-Checklist)\n- 🇷🇺 Russian: [ungear\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fungear\u002FFront-End-Checklist)\n- 🇹🇷 Turkish: [eraycetinay\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Feraycetinay\u002FFront-End-Checklist)\n- 🇩🇪 German: [xfuture603\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002FxFuture603\u002FFront-End-Checklist)\n- 🇵🇱 Polish: [mbiesiad\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fmbiesiad\u002FFront-End-Checklist)\n- 🇮🇩 Indonesian: [nniinnoo\u002FFront-End-Checklist](https:\u002F\u002Fgithub.com\u002Fnniinnoo\u002FFront-End-Checklist)\n\n## Support\n\nIf you have any question or suggestion, don't hesitate to reach me on X:\n\n- [X (formerly Twitter)](https:\u002F\u002Fddias.link\u002Fx)\n- [Chat on Discord](https:\u002F\u002Fddias.link\u002Fdiscord)\n\n## Contributors\n\nThis project exists thanks to all the people who contribute. ([Contribute](https:\u002F\u002Fgithub.com\u002Fthedaviddias\u002FFront-End-Checklist\u002Fblob\u002Fmain\u002FCONTRIBUTING.md)).\n\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fthedaviddias\u002FFront-End-Checklist\u002Fgraphs\u002Fcontributors\">\u003Cimg src=\"https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist\u002Fcontributors.svg?width=890\" alt=\"Contributors\" \u002F>\u003C\u002Fa>\n\n## Backers\n\nThank you to all our backers! 🙏 [[Become a backer](https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist#backer)]\n\n\u003Ca href=\"https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist#backers\" target=\"_blank\">\u003Cimg src=\"https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist\u002Fbackers.svg?width=890\" alt=\"Backers\" \u002F>\u003C\u002Fa>\n\n## Sponsors\n\nSupport this project by becoming a sponsor. Your logo will show up here with a link to your website.\n[[Become a sponsor](https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist#sponsor)]\n\n\u003Ca href=\"https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist\" target=\"_blank\">\u003Cimg src=\"https:\u002F\u002Fopencollective.com\u002Ffront-end-checklist\u002Fsponsor\u002F1\u002Favatar.svg\" alt=\"Sponsors\" \u002F>\u003C\u002Fa>\n\n## License\n\n[![CC0](https:\u002F\u002Fi.creativecommons.org\u002Fp\u002Fzero\u002F1.0\u002F88x31.png)](https:\u002F\u002Fcreativecommons.org\u002Fpublicdomain\u002Fzero\u002F1.0\u002F)\n\n**[⬆ back to top](#-table-of-contents)**\n\n[low_img]: https:\u002F\u002Fraw.githubusercontent.com\u002Fthedaviddias\u002FFront-End-Checklist\u002Frefs\u002Fheads\u002Fmain\u002Fdata\u002Fimages\u002Fpriority\u002Flow.svg\n[medium_img]: https:\u002F\u002Fraw.githubusercontent.com\u002Fthedaviddias\u002FFront-End-Checklist\u002Frefs\u002Fheads\u002Fmain\u002Fdata\u002Fimages\u002Fpriority\u002Fmedium.svg\n[high_img]: https:\u002F\u002Fraw.githubusercontent.com\u002Fthedaviddias\u002FFront-End-Checklist\u002Frefs\u002Fheads\u002Fmain\u002Fdata\u002Fimages\u002Fpriority\u002Fhigh.svg\n","Front-End Checklist 是一个详尽的前端检查列表，旨在帮助开发者在网站或HTML页面上线前进行全面测试。它涵盖了从头部信息、HTML结构、CSS样式到JavaScript脚本等多方面的最佳实践和标准要求，并根据重要性分为高、中、低三个等级，指导开发者优先处理关键问题。此外，项目还提供了丰富的参考资料链接，包括文档、工具及视频教程，方便用户深入学习相关知识。该清单非常适合于任何希望提升其Web开发质量的个人或团队，在确保网页性能、可访问性和SEO友好度方面具有重要作用。","2026-06-11 02:35:38","top_all"]