Term
HTML - HyperText Markup Language |
|
Definition
The "Language of the Web" A collection of Tags, Attributes, & Values that build up an electronic document (Ex:Web Pages) |
|
|
Term
What are the four required tages in an HTML doucument? |
|
Definition
The tag The head> tag
The tag The tag |
|
|
Term
|
Definition
The "root element. Opens at the top of the document. Closes at the end of the document. Everything goes inside the opening & closing tags. |
|
|
Term
|
Definition
Goes inside the tag
Contains document iformation
Not used for content
Includes related documents
Cascading Style Sheets
JavaScript Documents
Loads before the rest of the document. |
|
|
Term
|
Definition
Goes inside the tag
Gives the document a title
Displays in the Title Bar of the browser
window.
Should be short & descriptive
Used when search engines index pages |
|
|
Term
|
Definition
Immediately follows the closing tag. This is where the good stuff is... Contains the actual content of the website The information the user sees, Text, Images, etc... |
|
|
Term
|
Definition
page title goes here
body information goes here
|
|
|
Term
What are the three most used browsers? |
|
Definition
Internet Explorer - 85%
Firefox - 10%
Safari - 3% |
|
|
Term
what three extensions will help you the most in Firefox? |
|
Definition
HTML Validator
Web Developer Toolbar
X-Ray |
|
|
Term
What does HTML stand for? |
|
Definition
Hyper Text Markup Language |
|
|
Term
HTML is a collection of_______,_______, _______,that build up an electronic document |
|
Definition
|
|
Term
What tags open and closes an HTML document? |
|
Definition
|
|
Term
What tag follows the tag & contains information that loads before the visible portion of the web page? |
|
Definition
|
|
Term
What tag describes the contents of the document, is important to search engines, & is found inside the ? |
|
Definition
|
|
Term
What tag contains all the text & images that are displayed in the viewport? |
|
Definition
|
|
Term
|
Definition
used to label a word, phrase, or sentence that describes the content that follows |
|
|
Term
|
Definition
used to label a distinct section of sentences that begin on a new line |
|
|
Term
How can you make your job easier in web design |
|
Definition
|
|
Term
What do we use to transfer files? |
|
Definition
A File Transfer Protocol (FTP) Client |
|
|
Term
|
Definition
Your computer
The web server
Secure File Transfer Protocol |
|
|
Term
CSS is the language web designers use to change: |
|
Definition
Fonts, Colors, Background images & colors, Layout |
|
|
Term
CSS goes in a sparate file |
|
Definition
|
|
Term
CSS is attached to a HTML document inside the |
|
Definition
|
|
Term
|
Definition
are the blueprints or storyboards of web page designs. |
|
|
Term
What do we use to transfer files? |
|
Definition
A File Transfer Protocol (FTP) Client |
|
|
Term
What does SFTP stand for? |
|
Definition
Secure File Transfer Protocol |
|
|
Term
What is the file extension for a Cascading Style Sheet? |
|
Definition
|
|
Term
CSS files are attached in the ______of a HTML document |
|
Definition
|
|
Term
CSS files are attached in the ______of a HTML document |
|
Definition
|
|
Term
Wireframes are the _______ or _______ of web page designs. |
|
Definition
|
|
Term
structure----------->HTML
presentation-------->CSS
behavior------------>JS
why? |
|
Definition
Better compatibility between platforms & browsers Some browsers don't understand CSS Some people turn off JavaScript Less Code |
|
|
Term
|
Definition
The word semantic means "of or relating to meaning." |
|
|
Term
Everything in XHTML is a parent-child relationship |
|
Definition
|
|
Term
XHTML 1.0 Strict Guidelines |
|
Definition
Open with the proper DOCTYPE, Namespace, & Content-type Write all tags attributes in lowercase Quote all attribue values Close all tags All attributes must have values |
|
|
Term
|
Definition
Assigns values to properties based on the chosen selector.
selecor {property:value;}
body {font-size:small;} |
|
|
Term
|
Definition
Declaration body {font-size: small;} Selector Property Value Rule |
|
|
Term
|
Definition
|
|
Term
|
Definition
Custom name Used repetitively |
|
|
Term
|
Definition
|
|
Term
What are the three layers of web design? |
|
Definition
Structure, Presentation, Behavior |
|
|
Term
Why should we separate structure from presentation? |
|
Definition
Faster, Easier, Greater Compatibility |
|
|
Term
What is the term that gives meaning to the text inside HTML tags? |
|
Definition
|
|
Term
What are the five parts of non-empty HTML element? |
|
Definition
/*--attribue value This is a link Start Tag Content End Tag Element--*/ |
|
|
Term
What are the five rules of an XHTML document? |
|
Definition
1-Open with the proper DOCTYPE,Namespace, & Content-type 2-Write all tags & attributes in lowercase 3-Quote all attributes values 4-Close all tags 5-All attributes must have values |
|
|
Term
What are the three parts of a CSS rule? |
|
Definition
Declaration body {font-size: small;} Selector Property Value Rule |
|
|
Term
What are the three basic types of selectors? |
|
Definition
|
|
Term
Tag selectors are_________,they apply to every instance of that element. |
|
Definition
|
|
Term
Class selectors can be used________,they can be applied to multiple elements. |
|
Definition
|
|
Term
ID selectors are________, they can only be applied ONCE per XHTML document. |
|
Definition
|
|
Term
|
Definition
Block Level Used for Layout ID's |
|
|
Term
|
Definition
Content,Padding,Border,Margin |
|
|
Term
|
Definition
Floats Measure,Measure,Measure ContentWidth + Padding + Border + Margin =Size |
|
|
Term
A division is a _______level element, meaning that every instance starts on a new line |
|
Definition
|
|
Term
What is the semantic meaning of a division? |
|
Definition
Section of the page with related information |
|
|
Term
Divisions are typically associated with what HTML attribute? |
|
Definition
|
|
Term
What HTML & CSS is necessary to center a web page layout? |
|
Definition
A division that encompasses all other div's
Adjust the left & right margin of that div to auto |
|
|
Term
What proprty is CSS is used to create multiple columns? |
|
Definition
|
|
Term
What is the equation used to determine the actual width of a division in CSS? |
|
Definition
ContentWidth+Padding+Border+Margin=Size |
|
|
Term
What are the three image formats for the web? |
|
Definition
|
|
Term
What image format should we use for photographs & high color images? |
|
Definition
|
|
Term
What images formats use color tables of 256 colors? |
|
Definition
|
|
Term
What images formats have transparency? |
|
Definition
|
|
Term
Why do we use Image Ready rather than Photoshop to slice & compress web graphics? |
|
Definition
On the fly optimization
Pixel perfect slicing
Image Ready is built for web, Photoshop is built for print |
|
|
Term
What is the web content panel in IR for? |
|
Definition
|
|
Term
What is the syntax for loading an image into HTML? |
|
Definition
|
|
Term
What is the syntax for loading an image into CSS? |
|
Definition
#myid { background: url(../img/my.jpg); } |
|
|
Term
When should I use a class & when should I use an ID? |
|
Definition
Classes are used for styles that are repeated on the same page
ID's are used to specify unique sections of the page |
|
|
Term
What is the CSS syntax to remove the border from a linked image? |
|
Definition
|
|
Term
What is the CSS syntax for changing the states of links? |
|
Definition
a:link
a:visited
a:hover
a:active |
|
|
Term
What is the CSS syntax for changing the margin to 10px top, 20px bottom, 30px left & right? |
|
Definition
#content { margin:10px 30px 20px; } |
|
|
Term
What is the CSS syntax for changing the background color, image, and direction the image repeats? |
|
Definition
#content { background: color url repeat; } |
|
|
Term
What is the CSS syntax for affecting all linked text, in a list element, inside the navigation id? |
|
Definition
#navigation li a { font-size: 90% } |
|
|
Term
What attribute is required with the table tag in order to validate? |
|
Definition
|
|
Term
What attribute is used to span accross rows? |
|
Definition
|
|
Term
What method did we use to alternate row colors in the table? |
|
Definition
Assign a class to the odd rows |
|
|
Term
What does the action attribute of the form tag do? |
|
Definition
Tells the browser where to send information |
|
|
Term
Name 3 different values for the type attribute for input elements: |
|
Definition
radio, button, text, checkbox, password, submit, image, file |
|
|
Term
What is the purpose of the fieldset tag? |
|
Definition
|
|
Term
What elemet assigns a caption to the fieldset? |
|
Definition
|
|
Term
What element allows the user to click on a word & bring the cursor's focus to its related textfield? |
|
Definition
|
|