Skip to content

Instantly share code, notes, and snippets.

@marcobiedermann
Last active May 25, 2022 19:59
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcobiedermann/11208783 to your computer and use it in GitHub Desktop.
Save marcobiedermann/11208783 to your computer and use it in GitHub Desktop.
website-head-tags
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Website</title>
<base href="/">
<!-- Search Engine -->
<meta name="description" content="max 155 Chars">
<!-- Mobile & Windows 8 -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Website">
<meta name="application-name" content="Website">
<meta name="mobile-web-app-capable" content="yes">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Styles -->
<meta name="theme-color" content="#fff">
<!-- Stylesheets -->
<link href="css/style.css" rel="stylesheet">
<link href="manifest.json" rel="manifest">
<!-- Icons -->
<!-- place favicon.ico (48x48) in root folder -->
<link href="http://dummyimage.com/192/808080/fff/favicon-192x192.png" rel="icon">
<link href="http://dummyimage.com/192/808080/fff/favicon-192x192.png" rel="apple-touch-icon">
<!-- Open Graph -->
<meta property="og:description" content="Max. 200 Characters">
<meta property="og:image" content="http://dummyimage.com/1200x630/808080/fff.png">
<meta property="og:site_name" content="Website Name">
<meta property="og:title" content="Title Here">
<meta property="og:type" content="website">
<meta property="og:locale" content="en_US">
<meta property="og:locale:alternate" content="de_DE">
<meta property="og:url" content="http://www.example.com/">
<!-- Schema.org -->
<meta itemprop="name" content="The Name or Title Here">
<meta itemprop="description" content="This is the page description">
<meta itemprop="image" content="http://www.example.com/image.jpg">
<!-- Facebook -->
<meta property="fb:admins" content="Facebook numberic ID">
<meta property="fb:app_id" content="[FB_APP_ID]">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:creator" content="@[NAME]">
<meta name="twitter:title" content="Page Title">
<meta name="twitter:description" content="Page description less than 200 characters">
<meta name="twitter:image" content="http://www.example.com/image.jpg">
<meta name="twitter:url" content="http://www.example.com">
<!-- Google+ -->
<link href="https://plus.google.com/[Google+_Profile]" rel="author">
<link href="https://plus.google.com/[Google+_Page_Profile]" rel="publisher">
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment