• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/88

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

88 Cards in this Set

  • Front
  • Back

Hierarchy

The order in which the human eye preceives what it sees. This order is created by the visual contrast between forms in a field of perception. Objects with highest contrast to their surroundings are recognized first by the human mind

Directory

Another name for a folder

Root

the directory that contains all other directories and files on the system and which is designated by a forward slash.

HTML

HyperText Markup Language, the main markup language for creating web pages and other info that can be displayed in a web browser

Hypertext

Text displayed on a computer display or other electronic device with references to other text that the reader can immediately access, usually by a mouse click, keypress, sequence or by touching the screen.

Markup

A modern system for annotating a document in a way that is syntactically distinguishable from the text.

tag

act like containers. They tell you something about the info that lies between the opening and closing tags.

attribute

Provide additional info about HTML elements and are always specified in the start tag

HTML element

everything from the start tag to the end tag.

hook

A place in code the programmer can target for styling purposes (visual) or enhanced functionality.

Browser

A program used to view HTML documents

Client

A computer that accesses a service made available by a server

Server

A computer dedicated to run one or more services

Wireframe

A visual guide that represents the skeletal framework of a website.

URL

Uniform Resource Locator, also known as web address, is a specific character string that constitutes a reference to a resource.

DOCTYPE

An instruction to the web browser about what version of HTML the page is written in.

XML

Extensible Markup Language, is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable.

DOM

Document Object Model

Semantic HTML

The use of HTML markup to reinforce the semantics, or meaning, of the info in webpages rather than merely to define its presentation or look.

class

attribute that specifies one or more names for an element.

id

attribute that specifies a unique name for an element.

CSS

Cascading Style Sheets, a style sheet language used for describing the presentation semantics of a document written in a markup language.

CSS Rule

The building block of CSS. Two main parts selector and declaration.

Selector

The instruction in a CSS rule set that tells the browser what elements to 'select' for styling. Appears before the opening curly brace.

Declaration

The section of a style rule that defines the styles to be applied. Consists of a property and a value.

Deprecated

Code that is no longer included in the language specifications.

Alpha Channel

A color component that represents the degree of transparency of a color.

Hexadecimal

A base-16 number system

Hex Color

Six-digit codes that represent the amount of Red, Green and Blue in a color, preceded by a hash # sign.

RGBA

Red Green Blue Alpha

HSLA

Hue Saturation Lightness Alpha

comment

Text inserted in the source code but not displayed in the browser.

Metadata

data about the data.

Meta element

HTML element used to provide structured metadata about a Web page. Multiple meta elements are often used on the same page: the element is the same, but its attributes are different.

pseudo-class

added to a selector and is similar to a class in HTML, but its not specified explicitly in the markup. Acts as an extra value for a class attribute.

Pseudo-element

added to a selector and acts like an extra element is in the code.

Design is all about...

Communication

"Tools" in the Hierarchists Toolbox

Size


Color


Contrast


Alignment


Repetition


Proximity


Density and Whitespace


Style and Texture


Size

Objects that are bigger demand more attention. Effective way of guiding a viewer's eye to a particular portion of the page.

Color

Can function as both organizational and personality tool. Bold contrasting choices on elements demand attention.


Alignment

Creates order between elements.

Repetition

Assigns relative meaning to elements.

Proximity

Separates elements from each other and creates sub-hierarchies.

Density and Whitespace

Packing elements into a spaces makes it feel heavy, while spacing them out too much loses relationships between them.



A just right page allows the user to easily recognize when elements are related or not.

Style and Texture

Most open ended tool, can be very dangerous

Principles of Design

Unity


Harmony


Balance


Rhythm


Emphasis

Elements of Design

Line


Color


Shape


Form


Pattern


Space


Texture

Two types of Balance

Symmetrical



Asymmetrical

Scale

The real, apparent size of an object seen in relation to other objects.

Repetition and Rhythm

the recurrence of a design element coupled with a certain flow.

Directional Forces

Both implied and actual, help guide the eye and mind movement of the viewer. They can also bind the work into a single entity

Unity

The force operating within a work of art which can give it the appearance of oneness or resolution. Consistency of concept.

Proportion

The size relationship of parts of the entire work and each to the other.

Emphasis and Subordination

Establishing centers of interest which focus the viewer's attention.

Contrast

Primary forms:


size


position


color


texture


shape


orientation

5 Font Types

Serif,


Sans Serif,


Monospace,


Fantasy,


Cursive

DNS

Domain Name System, act like phone books tell a computer the IP address associated with the requested domain name.

CSS font declaration

body {


font-family: Georgia, Times, serif;


}

CSS font size

body {


font-size: 12px;


}

CSS @font-face

@font-face {


font-family: 'ChunkFiveRegular';


src : url('fonts/chunkfive.eot');


}

CSS Bold

.credits {


font-weight: bold;


}

CSS Italic

.credits {


font-style : italic;


}

CSS leading (line-height)

p {


line-height : 14px;


}

Block display type

Element sits on a line by itself

Inline display type

Element can be right next to another but cannot have padding or margin or other things.

Does HTML 5 require all elements to be self-closing?

NO

In HTML 5 can the anchor tag wrap multiple elements?

Yes

HTML heading

<h1>Heading 1</h1>

HTML paragraph

<p>A paragraph in HTML</p>

HTML Strong

<p><strong>Beware</strong> of Dog</p>

HTML emphasis

<p>I <em>think</em> Ivy was the first.</p>

HTML unordered list

<ul>


<li>a</li>


</ul>

HTML ordered list

<ol>


<li>a</li>


</ol>

HTML line breaks

<p>The Earth<br />gets one hundred tons heavier every day.</p>

Link to external style sheet

<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />

HTML adding image

<img src="images/image1.png" alt="An image tada"></img>

Which common image types support transparency?

PNG, GIF

HTML Nested List

<nav>


<ul>


<li><a href="#">Item</a></li>


<ul>


<li><a href="#">Nested Item</a></li>


</ul>


</ul>


</nav>

Absolute Path

http://www.absolute.com/

Relative Path

relative.org

CSS attach image and repeat horizontal

body {


background-image: url("image2.png");


background-repeat: repeat-y;


}

HTML5 FIGURE

<figure>


Element used to contain an image and its caption. Can have more than 1 image but only a single caption.

HTML5 Figcaption

<figcaption>


Element that allows web page authors to add a caption to an image.

Mailto Link

<a href="mailto:someone@someplace.com">Email</a>

How CSS Rules Cascade

Last Rule: Latter of selectors takes precedence.



Specificity: The most specific is chosen.



Important: !important

Three important types of CSS selectors

Type


Class


Id

CSS Shorthand Background

Order of properties:


color


image


repeat


attachment


positioning


ex:


body {


background: #fff url('tree.png') no-repeat right top;


}

na

na