FE Web Languages, Frameworks, and Tools Flashcards
HTML5
Hypertext Markup Language
Tag based language, making up the structure of a web page. As basic as it gets
CSS3
Cascading Style Sheets
language controlling the visual styling and appearance of HTML. As the name implies, it gets applied in a cascading fashion from parents to children
SASS
Syntactically Awesome Style Sheets
this is a CSS extension pre-processing language, meaning it adds functionality to the base CSS Codex. You write code as a .sass file that then gets converted into a .css file before it is sent to the client browser.
Javascript, ECMAscript
this is a non-compiled, client side object-oriented scripting language meaning all processing is performed by the client machine and not the server.