Last active
May 18, 2017 21:19
-
-
Save druellan/b06fceb5f6f75f9fc6e3cc8c63a18028 to your computer and use it in GitHub Desktop.
HTML5 Base Head
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="es"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<meta name="description" content=""> | |
<!-- For IE 9 and below. ICO should be 32x32 pixels in size --> | |
<!--[if IE]><link rel="shortcut icon" href="path/to/favicon.ico"><![endif]--> | |
<!-- Touch Icons - iOS and Android 2.1+ 180x180 pixels in size. --> | |
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png"> | |
<!-- Firefox, Chrome, Safari, IE 11+ and Opera. 196x196 pixels in size. --> | |
<link rel="icon" href="path/to/favicon.png"> | |
<meta name="application-name" content="My App"> | |
<meta name="msapplication-TileImage" content="favicon-144.png"> | |
<meta name="msapplication-TileColor" content="#2A2A2A"> | |
<!-- Progressive manifest --> | |
<link rel="manifest" href="manifest.json"> | |
<!-- Fullscreen capable web-app for iOS --> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<!-- Fullscreen capable web-app Android & others --> | |
<meta name="mobile-web-app-capable" content="yes"> | |
<meta property="og:title" content="The Title"> | |
<meta property="og:description" content="The Description"> <!-- ˜300 chars --> | |
<meta property="og:site_name" content="Sfida Blog"> | |
<meta property="og:locale" content="es_AR"> | |
<meta property="og:type" content="website"> | |
<meta property="og:url" content="http://www.sfidastudios.com"> | |
<meta property="og:image" content="http://www.sfidastudios.com/logo.png"> <!-- 200x200px - 1200x1200px --> | |
<meta name="twitter:card" content="summary"> | |
<meta name="twitter:site" content="@sfidastudios"> | |
<link rel="publisher" href=”https://plus.google.com/+sfidastudios"> | |
<link rel="stylesheet" href="css/style.css"> | |
<!--[if lt IE 9]> | |
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
<script>window.html5 || document.write('<script src="vendor/html5shiv.min.js"><\/script>')</script> | |
<![endif]--> | |
</head> | |
<body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment