The HTML5 CR specifies that in a meta
element, name=author
means that the value (i.e., the value of the content
attribute) “must be a free-form string giving the name of one of the page's authors”. This corresponds to the descriptive examples in HTML 4.01.
So <meta name="author" content="Some name/company">
claims that “Some name/company” is an author of the page. That would be false information, but it does not matter much, since very few programs make any use of information in such tags.
Thus, you can use <meta name="author" content="Omar">
, or replacing “Omar” with your full name. But it will normally not be displayed to users or recognized in any way. To claim authorship, you can write “This page was created by Omar.” in normal text content somewhere, possibly in a footer, possibly marked up as footer
. Anyway, making it real text content is the only way to give all visitors access to the information.