Skip to content

Instantly share code, notes, and snippets.

@GabeStah
Created December 10, 2015 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GabeStah/f554c790c138c111c6ef to your computer and use it in GitHub Desktop.
Save GabeStah/f554c790c138c111c6ef to your computer and use it in GitHub Desktop.
Coding Dojo - HTML5 Cheat Sheet - Metadata and Title
<head>
<!-- Character Encoding: http://www.w3.org/TR/html-markup/syntax.html#character-encoding -->
<meta charset="UTF-8">
<!-- Metadata: http://www.w3.org/TR/html5/document-metadata.html#the-meta-element
Any metadata you wish is valid. Note that Google and other search engines ignore
metadata 'keywords' as specified here in the HTML document. -->
<meta name="author" content="Book Dojo">
<meta name="keywords" content="book,language,reading,author">
<meta name="description" content="The Book Repository">
<!-- Title: http://www.w3.org/TR/2011/WD-html5-20110525/elements.html#the-title-attribute -->
<title>The Book Repository | Book Dojo</title>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment