Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 401 Bytes

separation-of-concerns.md

File metadata and controls

9 lines (6 loc) · 401 Bytes

Separation of Concerns

  • HTML describes the structure (DOM) of your web page.
  • CSS describes how the DOM is rendered to the screen.
  • JavaScript allows your web page to process and respond to user input.

Each piece is important, but each piece is has a different role to play. Learn how to plan your projects & organize your source code according to these roles, or concerns.