Skip to content

Instantly share code, notes, and snippets.

@gimesi
Last active August 30, 2021 03:54
Show Gist options
  • Save gimesi/1066d590a87d56cbfa92 to your computer and use it in GitHub Desktop.
Save gimesi/1066d590a87d56cbfa92 to your computer and use it in GitHub Desktop.
(Hopefully) useful snippet of common meta tags for the <head> section: standard & social tags (e.g. for Facebook, Twitter, Google+, Pinterest), fav and touch icons, and other stuff.
<!-- Charset, Content Type -->
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<!-- Standard Meta Tags -->
<title></title>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<!-- Author Tags -->
<meta name="author" content=""/>
<meta name="copyright" content=""/>
<meta name="publisher" content=""/>
<!-- Robots -->
<meta name="robots" content=""/>
<!-- Site Verification -->
<meta name="google-site-verification" content=""/>
<meta name="msvalidate.01" content=""/>
<meta name="alexaVerifyID" content=""/>
<!--
SOCIALIZE
-->
<!-- OpenGraph (Facebook, Pinterest,... ) -->
<meta property="og:type" content="website"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content=""/>
<meta property="og:description" content=""/>
<meta property="og:url" content=""/>
<meta property="og:image" content=""/>
<!-- Twitter -->
<meta property="twitter:account_id" content=""/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:site" content="@..." />
<meta name="twitter:title" content=""/>
<meta name="twitter:description" content=""/>
<meta name="twitter:image" content=""/>
<meta name="twitter:url" content=""/>
<meta name="twitter:creator" content="@..."/>
<!-- Google+ -->
<meta itemprop="name" content=""/>
<meta itemprop="description" content=""/>
<meta itemprop="image" content=""/> <!-- min-height 120px! -->
<link rel="publisher" href=""/>
<link rel="author" href=""/>
<!--
ICONS & MOBILE/TOUCH SPECIFIC STUFF
-->
<!-- Favicons -->
<link rel="shortcut icon" type="image/ico" href="http://www.website.com/favicon.ico"/> <!-- full URL, file in root directory! -->
<link rel="icon" type="image/png" href="/favicon.png"/>
<!-- iOS -->
<meta name="apple-mobile-web-app-title" content=""/>
<link rel="apple-touch-icon-precomposed" sizes="180x180" href="/apple-touch-icon-180x180-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-152x152-precomposed.png"/> <!-- since iOS7 these dimensions -->
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-120x120-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png"/>
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-76x76-precomposed.png"/> <!-- since iOS7 these dimensions -->
<link rel="apple-touch-icon" href="/apple-touch-icon.png"/>
<!-- Win8 -->
<meta name="msapplication-TileColor" content="#Hexcolor"/>
<meta name="msapplication-TileImage" content="/win8-touch-icon-144x144-precomposed.png"/>
<!--
EVERYTHING'S UP TO YOU, ESPECIALLY THE LINES BELOW :)
-->
<!-- Facebook Insights for your website -->
<meta property="fb:page_id" content=""/>
<meta property="fb:admins" content=""/>
<meta property="fb:app_id" content=""/>
<!-- Disable touch highlight on Win8 IE -->
<meta name="msapplication-tap-highlight" content="no"/>
<!-- SEO for Business -->
<meta property="place:location:latitude" content="48.2082"/>
<meta property="place:location:longitude" content="16.3738"/>
<meta property="business:contact_data:street_address" content="Street Name"/>
<meta property="business:contact_data:locality" content="City Name"/>
<meta property="business:contact_data:postal_code" content="ZIP Code"/>
<meta property="business:contact_data:country_name" content="Country"/>
<meta property="business:contact_data:email" content="contact@website.com"/>
<meta property="business:contact_data:phone_number" content="+43 1234567890"/>
<meta property="business:contact_data:fax_number" content="+43 1234567890"/>
<meta property="business:hours:day" content="Monday, Tuesday, Wednesday, Thursday, Friday" />
<meta property="business:hours:start" content="Time"/>
<meta property="business:hours:end" content="Time"/>
<meta property="business:contact_data:website" content="http://www.website.com"/>
<!-- Prices for Pinterest -->
<meta property="og:price:amount" content="15.00"/> <!-- required for product pin; include decimal places -->
<meta property="og:price:currency" content="USD"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment