Created
July 18, 2016 21:01
-
-
Save justinhough/fde6fde926eea0ef191c530740ebd64b to your computer and use it in GitHub Desktop.
Clean and Optimized HTML page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Page Title</title> | |
<!-- Description of the page (limit to 150 characters) --> | |
<meta name="description" content="A description of the page"> | |
<meta name="robots" content="index,follow,noodp"><!-- All Search Engines --> | |
<meta name="googlebot" content="index,follow"><!-- Google Specific --> | |
<meta name="generator" content="program_name"> | |
<meta name="url" content="https://example.com/"> | |
<link rel="canonical" href="https://example.com/2010/06/9-things-to-do-before-entering-social-media.html"> | |
<!-- Alternative Language Content --> | |
<link rel="alternate" href="https://es.example.com/" hreflang="es"> | |
<!-- The first, next, previous, and last documents in a series of documents, respectively --> | |
<link rel="first" href="https://example.com/atomFeed.php"> | |
<link rel="next" href="https://example.com/atomFeed.php?page=4"> | |
<link rel="previous" href="https://example.com/atomFeed.php?page=2"> | |
<link rel="last" href="https://example.com/atomFeed.php?page=147"> | |
<!-- Feeds --> | |
<link rel="alternate" href="https://feeds.feedburner.com/example" type="application/rss+xml" title="RSS"> | |
<link rel="alternate" href="https://example.com/feed.atom" type="application/atom+xml" title="Atom 0.3"> | |
<!-- For IE 11, Chrome, Firefox, Safari, Opera --> | |
<!-- Generator: http://realfavicongenerator.net/ --> | |
<link rel="icon" href="path/to/favicon-16.png" sizes="16x16" type="image/png"> | |
<link rel="icon" href="path/to/favicon-32.png" sizes="32x32" type="image/png"> | |
<link rel="icon" href="path/to/favicon-48.png" sizes="48x48" type="image/png"> | |
<link rel="icon" href="path/to/favicon-62.png" sizes="62x62" type="image/png"> | |
<link rel="icon" href="path/to/favicon-192.png" sizes="192x192" type="image/png"> | |
<!-- Facebook / Open Graph --> | |
<!-- https://developers.facebook.com/docs/sharing/webmasters#markup --> | |
<!-- Open Graph: http://ogp.me/ --> | |
<meta property="og:url" content="https://example.com/page.html"> | |
<meta property="og:type" content="website"> | |
<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"> | |
<!-- Twitter --> | |
<!-- More info: https://dev.twitter.com/cards/getting-started --> | |
<!-- Validate: https://dev.twitter.com/docs/cards/validation/validator --> | |
<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"> | |
<!-- Google+ / Schema.org --> | |
<link href="https://plus.google.com/+YourPage" rel="publisher"> | |
<meta itemprop="name" content="Content Title"> | |
<meta itemprop="description" content="Content description less than 200 characters"> | |
<meta itemprop="image" content="https://example.com/image.jpg"> | |
<!-- Prefetching, preloading, prebrowsing --> | |
<link rel="dns-prefetch" href="//example.com/"> | |
<link rel="preconnect" href="https://www.example.com/"> | |
<link rel="prefetch" href="https://www.example.com/"> | |
<link rel="prerender" href="https://example.com/"> | |
<link rel="subresource" href="styles.css"> | |
<link rel="preload" href="image.png"> | |
<!-- More info: https://css-tricks.com/prefetching-preloading-prebrowsing/ --> | |
<!-- Styles --> | |
<link rel="stylesheet" href="./css/style_name.css" /> | |
</head> | |
<body> | |
<!-- Content of Page --> | |
<!-- Scripts --> | |
<script type="text/javascript" src="./js/script_name.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment