Indentation is the visual structure of how your code is laid out. It uses tabs to organize code into a hierarchy.
The structure of an HTML document
HTML provides several tags for formatting text on web pages.
Allows putting links on a web page. It uses the href attribute to specify what the link should point to.
Allows adding an image to a web page. It is self-closing. The attributes of an `<img>` tag include `src`, which specifies where to get the image from (the url for an image ), and `width` and `height` attributes, which specify the size of the image in pixels.
Way to organize information with a simple structure that is easy to read and write on a webpage. There are ordered and unordered HTML lists.
Defines an unordered list in HTML.
defines a list item inside an HMTL list.
Tables display information in a grid.
Allows adding several different types of styles to HTML elements.
Cascading Style Sheets. The language for designing web pages and adding style.
Defines which HTML elements a CSS rule applies to.
`class` is an attribute we can add to HTML tags in order to style a specific group of elements.
`id` is an attribute we can add to an HTML tag to style that specific element.
A collection of related webpages, usually registered under the same domain name
The connection between one HTML page to another HTML page
A tag that creates a new area of content on a web page that can be styled independently of the rest of the site
A tag that creates an inline area of content on a webpage that can be manipulated separately from the block it is enclosed in
An attribute that determines if a particular element can be seen by the viewer of the web page
Creating the illusion of motion using rapidly changing still images.
A small box with extra information about an element that appears when the cursor hovers over the element.