Start and end an HTML element. Closing tag contains a forward slash.
Back
Head Element
Front
Contains information about the page that is not displayed on the actual webpage.
Back
src Attribute
Front
The name of the attribute for <img> elements, and lives directly inside the image element. Value is the actual URL of the image of the image you want to display on the page. (<img src=insert image link/>)
Back
Unordered Lists
Front
Text that formats individual list items in bullet points which are added using the <li> element.
Back
<img> Element
Front
Allows you to add images to a page. Does NOT have a closing tag only an opening tag (<img/>).
Back
Body Element
Front
Types of visible content can be added within the body such as text, images, etc.
Back
URL (Uniform Resource Locator)
Front
The actual address of a webpage.
Back
!DOCTYPE
Front
An instruction that lets the computer know what type of document to expect and it is usually the very first line of code.
Back
Whitespace
Front
Spacing between lines of code that makes it easier to read and understand.
Back
href Attribute
Front
The name of the attribute for anchor elements, and lives directly inside the anchor element. Value is URL is set to the page you want the user to be directed to. (<a href=insert link>)
Back
Heading/Headers
Front
Used to describe content. 6 different types, <h1>-<h-6>, with h1 being the largest and h-6 being the smallest.
Back
Ordered Lists
Front
Very similar to unordered lists, except each item is in numerical or alphabetical order.
Back
Anchor element
Front
Enables you to add links to a web page (<a>...</a>)
Back
alt Attribute
Front
Another attribute for <img> elements, which also lives inside the image element. Value is a description of the image in case it is unable to be viewed. (<img src=image link alt="insert description"/>)