Uses tags to format and define elements within a document. The tags are not shown when the document is displayed.
Text displayed on a computer that has links to other hypertext documents.
The structure of an HTML document
HTML provides several tags for formatting text on web pages.
HTML headings are titles or subtitles that you want to display on a webpage. HTML headings are defined with the `<h1>` to `<h6>` tags. `<h1>` defines the most important heading. `<h6>` defines the least important heading.
The `<p>` tag defines a paragraph. Browsers automatically add a single blank line before and after each `<p>` element.
The `<i>` tag defines a part of text in an alternate voice or mood. The content inside is typically displayed in italic.
The `<b>` tag specifies bold text without any extra importance.
This tag defines a thematic break in an HTML page (e.g. a shift of topic). The element is most often displayed as a horizontal rule that is used to separate content (or define a change) in an HTML page.
This tag inserts a line break.
Allows putting links on a web page. It uses the href attribute to specify what the link should point to.
The connection between one HTML page to another HTML page
Tags can have attributes that tell us more information about the tag.
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.
The <ol> tag defines an ordered list. An ordered list can be numerical or alphabetical.
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.
Used to translate domain names into IP addresses.
a set of data that describes and gives information about other data.