将代码编写者信息留在HTML中的好方法?

jol*_*olt 3 html

我想知道,什么是离开代码编写者(程序员)信息/首字母/(甚至可能)版权的最佳方式...... 好吧,有关Web开发人员的一些信息,而不是 HTML 内容维护者.

在页脚内留下链接到我的网站是一个好方法,或者我可能会使用<meta>标签这样的东西?

提前致谢!

Nul*_*ion 8

Do you want that to be visible to the end user or not?

If not, use comments:

HTML

<!-- comment here -->
Run Code Online (Sandbox Code Playgroud)

CSS

/* comment here */
Run Code Online (Sandbox Code Playgroud)

Javascript

// comment

/* multi-line
comment*/
Run Code Online (Sandbox Code Playgroud)

If yes, most of the times it'll be on the bottom, along with other copyright information.