1

What is the best metatag to use in a html5 page to add the name of the Agency/CMS that developed the web application?

I have found these 3 options:

<meta name="author" content="My CMS name dot com" />

<meta name="application-name" content="My CMS name dot com" />

<meta name="dcterms.rights" content="My CMS name dot com" />

Not sure that the first 2 are still valid in html5

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
ipel
  • 1,326
  • 1
  • 18
  • 43

2 Answers2

1

In HTML5, you may only use names that are defined in the HTML5 spec or registered on WHATWG’s MetaExtensions wiki page. So these are the two places where you can look for appropriate names.

author is for the "name of one of the page's authors". As a (CMS) developer, you are probably not the author of the page, right?

application-name should not be used for the name of the CMS used to create the app, but for the name of the (created) app (only to be used if it’s an app, not for any kind of website).

dcterms.rights doesn’t seem to be appropriate; it’s for (information about) the rights, and not who has the rights. And besides that, it’s for the created site/app/content, not the tools that made it possible.

You could

Community
  • 1
  • 1
unor
  • 92,415
  • 26
  • 211
  • 360
  • I think the generator metatag is to specifiy the editor used to create the website (like: dreamweaver), but i'm not sure... instead "application-name" specifies the name of the Web application that the page represents (source w3c) – ipel Aug 19 '14 at 09:30
  • @ipel: It’s for "one of the software packages used to generate the document", and that would be clearly your CMS. – unor Aug 19 '14 at 09:31
0

@ipel,

I agree with @unor's answer of not using the 3 potential meta tags you've highlighted.

Have you considered adding a humans.txt file instead? Last option would be to add an HTML comment at the start of the HTML document.

<!-- Copyright © Year Publisher -->
Clyde D'Souza
  • 402
  • 2
  • 10