Body or entity that sets standards for web development

2

Sometimes the consensus between designers and web developers regarding standards "forces" them, almost exclusively, to use patterns of fact . I would like to know if there is any body or entity that establishes legal standards for web development such as nomenclature, indentation, etc.?

    
asked by anonymous 07.07.2017 / 19:05

1 answer

6

Yes, there is W3C (not to be confused with w3schools for the love of God). It is he who defines the standards of HTML and CSS. In the case of the JavaScript language, the standards are a committee linked to ECMA , an international association similar to ISO . In both cases, decisions are made by committees involving area experts, including representatives of browser manufacturers.

However, they basically define syntax patterns, defining what can be used in a certain technology or not. It is not the case of things like nomenclature and indentation, which are not officially standardized in the mentioned languages¹, being the final decision in charge of the developers themselves.

¹ In languages such as Python the indentation is part of the syntax itself, in which case it is defined in the standard.

    
07.07.2017 / 19:11