Color palette of all 216 web safe colors that are shown the same on all browsers.
Back
Images
Front
graphics
Back
Unordered List
Front
Lists whose items are denoted with bullet points.<ul><li>...</li></ul>
Back
Body
Front
The body is the container for all of a page's content. Comes after the <head> tag, within the overall <html> tag.
Back
<Hr />
Front
Defines a thematic change in the content
Back
DOCTYPE
Front
Defines the document type
Back
<Img />
Front
A tag that defines an image in an HTML page. It has two required attributes: src and alt. SRC provides the link and alt provides the text if the image cannot be displayed.
Back
CSS
Front
Stands for Cascading Style Sheets and may be internal and inline or external and apply style changes to your entire site.
Back
Href
Front
Links tell the browser where to go using an href attribute, which stores a URL.
Back
<Br />
Front
This tag is used in a block of text to force a line break.
Back
Html tag
Front
All HTML files live within an over-arching html tag. This is the basic tag that defines an html document.
Back
Span
Front
It is the element used to color a part of a text; it is used to group inline-elements in a document.
Back
Relative Link
Front
Links to a page or a file on the current website. It doesn't contain a domain name.
Back
DIV
Front
A block level container (or 'division' of the web page) for content with no semantic meaning. Ex. <div>...</div>
Back
Headings
Front
Heading elements like <h1>, <h2>, <h3>, ... allow you to use six levels of document headings, ranging from largest to smallest, breaking up the document into logical sections. For example, the word 'Headings' above is wrapped in a <h2> tag.
Back
Element
Front
Written with a start tag, with an end tag, with the content in between
Back
Class Attribute
Front
Specifies one or more group names for an element. It is mostly used to point to a group in a style sheet. However, it can also be used by a JavaScript (via the HTML DOM) to make changes to HTML elements with a specified class.
Back
Src Attribute
Front
For images, it provides the link to the image. Ex: img src=
Back
Title
Front
This tag tells the browser what to display as the page title at the top and tells search engines what the title of your site is. It goes inside <head> tags.
Back
External Styles Sheet
Front
Use with CSS, it tells a browswer how to format a document. It is usually used when you want to impact of many pages at once.
Back
Hyperlink
Front
A text or an image you can click on, and jump to another document
Back
Border
Front
Specify the style, size, and color of an element's outline
Back
Ordered List
Front
List items are denoted with numbers.
Back
Alt Attribute
Front
Provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader). Ex: alt=
Back
Header
Front
Tag that surrounds important content that is invisible to the user, but is important to the browser. Elements within this tag contain metadata about the page and links to stylesheets, scripts, etc.
Back
Favicon
Front
The little icon that browsers display next to a page's title on a browser
Back
Id Attribute
Front
Specifies a unique id for an HTML element (the value must be unique within the HTML document). It is most used to point to a style in a style sheet, and by JavaScript (via the HTML DOM) to manipulate the element with the specific id.
Back
Tag
Front
Composed of the name of the element, surrounded by angle brackets. An end tag also has a slash after the opening angle bracket. EX: <head>...</head>
Back
HTML
Front
Hyper Text Markup Language. It is the language used to create all websites.
Back
Background Attribute
Front
The image or space on your page usually behind text
Back
Absolute Link
Front
Always include the domain name of the website, the full web address, including http://www.
Back
Email Link
Front
It is the send to link or mail to link that allows you send an email when you click on the link.