Skip to content

Instantly share code, notes, and snippets.

@jdgo-mars
Created December 13, 2015 18:20
Show Gist options
  • Save jdgo-mars/3ce9e16f6c729cf6e660 to your computer and use it in GitHub Desktop.
Save jdgo-mars/3ce9e16f6c729cf6e660 to your computer and use it in GitHub Desktop.
HTML Snippets
<head>
<!--Meta Information-->
<title>My Website</title>
<meta charset="utf-8">
<!--Mobile Stuff-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" href="mysite-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="mysite-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="mysite-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="mysite-icon-ipad-retina.png">
<!--Twitter-->
<meta name="twitter:card" content="mypicture">
<meta name="twitter:site" content="@MyTwitter">
<meta name="twitter:title" content="My Site Title">
<meta name="twitter:description" content="A Description">
<meta name="twitter:image" content="http://mysite.com/linktoapicture.png">
<!--Facebook-->
<meta property="og:image" content="http://mysite.com/linktoapicture.png" itemprop="thumbnailUrl">
<meta property="og:title" content="My Site Title">
<meta property="og:url" content="A Description">
<meta property="og:site_name" content="MyFacebook">
<!--Google, Bing, Yahoo Robots-->
<meta name="description" content="A Description for Search Engines">
<!--Stylesheets-->
<link rel="stylesheet" href="stylesheets/main.css">
<!--Javascript-->
<script src="js/app.js"></script>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment