Last active
October 8, 2017 22:30
-
-
Save MuriloMazzeu/eccba35f85c0f92c7741d7719fa2f875 to your computer and use it in GitHub Desktop.
HTML's Snippets
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Please read: http://msdn.microsoft.com/en-us/library/ie/dn455106.aspx --> | |
<browserconfig> | |
<msapplication> | |
<tile> | |
<square70x70logo src="assets/pictures/design/ms-small-tile.png"/> | |
<square150x150logo src="assets/pictures/design/ms-medium-tile.png"/> | |
<wide310x150logo src="assets/pictures/design/ms-wide-tile.png"/> | |
<square310x310logo src="assets/pictures/design/ms-big-tile.png"/> | |
<TileColor>#3498db</TileColor> | |
</tile> | |
</msapplication> | |
</browserconfig> |
This file contains 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
<head> | |
<!-- [Defaults] --> | |
<meta charset="UTF-8"> | |
<meta property="og:type" content="webpage"> | |
<meta property="og:locale" content="pt_BR"> | |
<meta property="webpage:tag" content="sites"> | |
<meta property="webpage:section" content="Web"> | |
<meta name="twitter:card" content="summary_large_image"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<!-- [Mobiles] --> | |
<meta name="HandheldFriendly" content="true"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0"> | |
<!-- [Configurables] --> | |
<title>...</title> | |
<meta name="twitter:site" content="..."> | |
<meta property="og:site_name" content="..."> | |
<meta name="application-name" content="..."> | |
<meta property="og:title" content="..."> | |
<meta name="twitter:title" content="..."> | |
<meta property="og:url" content="..."> | |
<meta property="og:image" content="..."> | |
<meta name="twitter:image" content="..."> | |
<meta name="description" content="..."> | |
<meta property="og:description" content="..."> | |
<meta name="twitter:description" content="..."> | |
<meta name="theme-color" content="#000000"> | |
<meta name="msapplication-navbutton-color" content="#000000"> | |
<meta name="apple-mobile-web-app-status-bar-style" content="#000000"> | |
<meta name="msapplication-tooltip" content="..."> | |
<meta name="msapplication-config" content="/msconfig.xml"> | |
<!-- [SEO] --> | |
<meta name="rating" content="general"> | |
<meta name="robots" content="index, follow"> | |
<meta name="keywords" content=", , ,"> | |
<meta name="google-site-verification" content="..."> | |
<!-- [Owner] --> | |
<meta name="author" content="Murilo Mazzeu"> | |
<meta name="creator" content="Murilo Mazzeu"> | |
<!--meta name="twitter:creator" content="@profileId"--> | |
<meta property="webpage:author" content="https://www.facebook.com/murilo.mazzeu"> | |
<!-- [Links] --> | |
<link rel="next" href="/next-page"> | |
<link rel="canonical" href="/"> | |
<link rel="index" type="text/html" href="/"> | |
<link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
<link rel="apple-touch-icon" type="image/png" href="128x128.png"> | |
<link rel="apple-touch-startup-image" type="image/png" href="512x512.png"> | |
<link rel="author" type="text/plain" href="/humans.txt"> | |
<link rel="license" type="text/plain" href="/license.txt"> | |
</head> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment