A good way to leave information about code writers inside HTML?

I'm wondering how best to leave the information (initials) of the code authors (programmers) / initials / (maybe even) copyrights ... well, some information about the web developer, and not the content-keepers inside HTML.

Is a link to my site inside the footer a good way, or can I probably use tags <meta>for something similar there?

Thanks in advance!

+3
source share
2 answers

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

If not, use the comments:

HTML

<!-- comment here -->

CSS

/* comment here */

Javascript

// comment

/* multi-line
comment*/

If so, then in most cases it will be below, as well as other copyright information.

+8

HTML .

<!--
     Page Design Copyright © 2010 My Design company,
     All rights reserved.

     http://example.com 
-->

meta​​strong > , .

+1

Source: https://habr.com/ru/post/1756483/


All Articles