I'm migrating web pages to HTML5 (from XHTML 1.1 + RDFa 1.1) and am getting errors where I did not get them before when I attempt to validate the HTML.
In my head
I have
<meta name="revised" content="2104-02-11" />
<meta name="copyright" content="© Rax, all rights reserved." />
and now get
Bad value revised for attribute name on element meta: Keyword revised is not registered.
Bad value copyright for attribute name on element meta: Keyword revised is not registered.
What is the correct way to have a copyright and revision date in HTML5?
My document now begins simply
<!DOCTYPE html>
<html>
which is, I gather, what all the cool cats are doing these days.