Describe the purpose of HTML within the code of a website
-HTML defines the structure of a webpage
-HTML defines the content of a webpage
-…using tags
Describe the purpose of CSS within the code of a website
-CSS defines the style
-…using selectors such as classes and IDs
-It can be placed within HTML or externally in a file
-Multiple pieces of CSS can be combined (the more local instances overriding)
Describe the purpose of Javascript within the code of a website
-Adds interactivity to websites
-Input from HTML forms can be retrieved from a webpage and processed using Javascript
-Often used to validate input data on the client computer