A good way of leaving code writers information inside HTML? -


i'm wondering, best way of leaving code writers (programmers) information/initials/(maybe even) copyright... well, information web developer, not content maintainer inside html.

is leaving link site inside footer way, or there maybe can used <meta> tags that?

thanks in advance!

do want visible end user or not?

if not, use comments:

html

<!-- comment here --> 

css

/* comment here */ 

javascript

// comment  /* multi-line comment*/ 

if yes, of times it'll on bottom, along other copyright information.


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -