Earlier quoted context omitted.
1. where did you see that logic? I can't see it in the comment 2. w3schools has surface-level tutorials that teach you the most basic use case of each feature. It's decent for teaching, hence the name. MDN on the other hand is a complete reference - it shows every possible way to use a certain feature in a standardised format. Not as beginner-friendly, but it's what professional web developers need. They are very dif…
MDN also has a bunch of tutorials[1], even for for various frameworks. I think the major difference is that W3Schools neglects to explain important concepts like what semantic html is and just says: "div is a cool box". [1] https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduc...
> The tag defines a division or a section in an HTML document.
> The tag is used as a container for HTML elements - which is then styled with CSS or manipulated with JavaScript.
> The tag is easily styled by using the class or id attribute.
That's a succinct, factual description of its definition and basic functions. What's wrong with that?