📄️ HTML
All websites need HTML, it's the basic elements of a site. Normally, there is a start tag, content, and an end tag. However some are considered self closing tags where they don't require a specific closing tag. These files have the extension .html
📄️ CSS
While HTML is the specific elements on a webpage, CSS determines how those elements visually appear. This is how you make a website look gorgeous. This files have the extension .css
📄️ CSS-Flexbox
Flexbox is a layout method for arranging items in rows or columns. Items flex (expand) to fill additional space or shrink to fit into smaller spaces.
📄️ Javascript
Javascript allows you to change the look of the website based on user or other input. An example is dropdown menus.
📄️ Javascript DOM
DOM stands for Document Object Model. Everything on the website is an object and can be manipulated using the DOM.
📄️ jQuery
Simpler libary for HTML document traversal and manipulation, event handling, animation, and Ajax.