HTML (Hyper Text Markup Language) to define the content of web pages
CSS to specify the layout of web pages
JavaScript to program the behavior of web pages
PHP
HTML - Block - Inline - Elements
Block Element always starts on a new line
Always takes up the full width available (stretches out to the left and right as far as possible).
An inline element does not start on a new line.
An inline element only takes up as much width as necessary
The <span> tag is an inline container used to mark up a part of a text, or a part of a document.
The <span> tag is easily styled by CSS or manipulated with JavaScript using the class or id attribute.
The <span> tag is much like the <div> element, but <div> is a block-level element and <span> is an inline element.
This sidenav is always shown.