Chapter 1 - Web Design Glossary Flashcards
Anti-alias
Refers to the appearance of text on a screen. Anti-aliased blends the edges of letters so that it appears smoother to our eyes.
What is AJAX and what is it for?
Asynchronous JavaScript and XML; used to create dynamic web applications and allows for asynchronous data retrieval without reloading a web page. This means that parts of a web page can be updated without reloading the whole page, which makes AJAX-enhanced pages perform very much like a desktop program. Before AJAX, the entire page must reload in order for the content to change.
CMYK vs RGB
Cyan, Magenta, Yellow, Key color(black) is used for printing and our eyes interpret the reflected light as continuous tones if the dots are small enough(300 dpi vs 72). Images for monitor display use RGB. Our eyes interpret the projected light as continuous tone if the pixels are small enough.
Explain the concept of accessibility.
The concept that websites should be accessible to all devices and browsers; hardware and software independence. More specifically, accessibility means that websites can be used by people with disabilities. We normally think of visual impairment (voice output browser) but we should also think about link target sizes (fine motor control) and making links accessible via the tab key. Also on the list: type size and contrast and alternative content on images (ALT tag). Websites funded with taxpayer money may be have an accessibility requirement. See accessibility resources from UW and from the federal government.
Anchor text
The text that is a hyperlink. May also be a reference to a jump link, a hyperlink that will move you up or down a webpage.
Bandwidth
Usually refers to the rate at which data can be transferred across a network; common measurements are bits-per-second (bps) and kilobits per second (kbs). It may also refer to the maximum amount of data a web hosting contract allows per month without overage charges. Slang: a reference to how much time someone has to do something: “I don’t have the bandwidth for that request right now.”
Below the Fold
An artifact of newspaper design, where the term means content on the bottom half of the front page. In web design, this references content below the bottom of the viewing area in the browser, which varies by monitor/device.
Bit Depth
Bits are parcels of information represented in each pixel.
1 bit = 2 colors 2 bit = 4 colors 3 bit = 8 colors 4 bit = 16 colors 5 bit = 32 colors 6 bit = 64 colors 7 bit = 128 colors 8 bit = 256 colors
Breadcrumbs
Navigation element that answers the question: where am I? Breadcrumbs appear near the top of a web page and display a website’s information hierarchy.
Browser Cache
Web browsers cache, or store, files to your hard drive so that the next visit (or page) will seem to load faster. From a design perspective, it is important to make sure global images and information (navigation, stylesheets) are in only one directory (folder) so that their website address (URL) is constant. Thus, after the first visit, they will live in cache.
CSS
Cascading Style Sheets are used to define the look and feel of a website. CSS helps separate content from presentation.
Client-Side
Client-side scripts are run in the web browser rather than on the web server. This is an off-loading of processes not unlike self-serve gas; it enables a web server to handle more visitors.
Content Management System
A CMS is a tool or system for managing website content and functionality. It is the opposite for writing each HTML page by hand and uploading it to the web server using FTP. WordPress is an open source CMS, as is Drupal.
DNS
Domain Name Service; this database-in-the-sky is what converts an IP address (which is a series of numbers) to a domain name (something.com, for example).
FTP
File Transfer Protocol, which is the method used to move (or transfer) files between computers on a network. In the context of websites, FTP is the protocol used to upload HTML, CSS and image files to a web server.