Skip to content

Instantly share code, notes, and snippets.

View thedaviddias's full-sized avatar
🌍

David Dias thedaviddias

🌍
View GitHub Profile
@thedaviddias
thedaviddias / index.html
Last active November 14, 2017 21:57
[Front-End Checklist] - DNS Prefetch
<link rel="dns-prefetch" href="https://example.com">
@thedaviddias
thedaviddias / index.html
Last active December 11, 2017 13:29
[Front-End Checklist] - Canonical
<!-- Helps prevent duplicate content issues -->
<link rel="canonical" href="http://example.com/2017/09/a-new-article-to-read.html">
@thedaviddias
thedaviddias / index.html
Created November 6, 2017 08:55
[Front-End Checklist] - Windows Tiles
<!-- Microsoft Tiles -->
<meta name="msapplication-config" content="browserconfig.xml">
@thedaviddias
thedaviddias / index.html
Last active December 11, 2017 13:24
[Front-End Checklist] - Apple Touch Icon
<!-- Apple Touch Icon (at least 200x200px) -->
<link rel="apple-touch-icon" href="/custom-icon.png">
<!-- To run web application in full-screen -->
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- Status Bar Style (see Supported Meta Tags below for available values) -->
<!-- Has no effect unless you have the previous meta tag -->
<meta name="apple-mobile-web-app-status-bar-style" content="black">
@thedaviddias
thedaviddias / index.html
Created November 6, 2017 08:47
[Front-End Checklist] - Favicons
<!-- 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">
@thedaviddias
thedaviddias / index.html
Created November 6, 2017 08:44
[Front-End Checklist] - Description
<!-- Meta Description -->
<meta name="description" content="Description of the page less than 150 characters">
@thedaviddias
thedaviddias / index.html
Created November 6, 2017 08:38
[Front-End Checklist] - Title
<!-- Document Title -->
<title>Page Title less than 55 characters</title>
@thedaviddias
thedaviddias / index.html
Last active December 11, 2017 13:22
[Front-End Checklist] - Viewport
<!-- Viewport for responsive web design -->
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
@thedaviddias
thedaviddias / index.html
Created November 6, 2017 08:32
[Front-End Checklist] - X-UA-Compatible
<!-- Instruct Internet Explorer to use its latest rendering engine -->
<meta http-equiv="x-ua-compatible" content="ie=edge">
@thedaviddias
thedaviddias / index.html
Created November 6, 2017 08:29
[Front-End Checklist] - Charset
<!-- Set character encoding for the document -->
<meta charset="utf-8">