1. HTML Flashcards
What does HTML do?
HTML provides structure to the content appearing on a website, such as images, text, or videos.
HTML stands for
HyperText Markup Language
What is a “markup language?”
A computer language that defines the structure and presentation of raw text.
What is “HyperText?”
Text that is displayed on a computer or device that provides access to other text through links, also known as hyperlinks.
The tag and content as a whole is called an:
<p>Hello World!</p>
HTML element
The tag of is:
<p>Hello World!</p>
<p>, opening tag | </p>
, closing tag, Hello World! is the content or information between opening/closing tag
One of the key HTML elements we use to build a webpage is the _______ element. Only content inside the opening and closing _______ tags can be displayed to the screen.
When an element is contained inside another element, it is considered the _____ of that element. The _____ element is said to be nested inside of the parent element.
Child element.
<p>This paragraph is a child of the body</p>
In HTML, there are six different “headings” or “heading elements”, ordered from largest to smallest in size they are:
<h1> <h2> <h3> <h4> <h5> <h6></h6></h5></h4></h3></h2></h1>
<div> is short for "\_\_\_\_\_\_\_\_"</div>
Division
<div> or a Division tag helps to Divide...</div>
the page into sections. These sections are useful for grouping elements in your HTML together.
<div>'s can contain any...</div>
Text or other HTML elements, such as links, images or videos.
If we want to expand an element’s tag, we can do so using an “_________”.
Attribute
What is an “Attribute?”
Attributes are content added to the opening tag of an element and can be used in several different ways, from providing information to changing styling.
Attributes are made up of the following two parts:
The “name” of the attribute
The “value” of the attribute