= List Of Rules = * Here I'm putting some rules we all have to follow when writing javascript applications. * They can be applied not only for Sophie, I've read some books and compiled the rules (mainly from the JavaScript The Good Parts) * There are some simple rules for writing HTML too. == HTML/CSS rules == * The style attribute of HTML tags should not be used, if possible. * Presentational HTML tags such as should not be used at all. * Tags should be used for their semantic meaning, not because of how browsers render them by default. For instance, developers sometimes use a
tag where a

would be more appropriate. It's also favorable to use and instead of and as the latter describe the visual presentation rather than the meaning. * Minimize the number of