JOUR 108 Final
How do you insert a comment in a CSS file?
/* this is a comment */
In pixels per inch (ppi) or dots per inch (dpi), the standard, time-honored size for pixel based images to be printed is...
300dpi
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
How can you make a link open in a new tab/browser window?
<a href="url" target="_blank">
Choose the correct HTML tag to make a text bold:
<b></b>
What is the correct HTML tag for inserting a line break?
<br>
Choose the correct HTML tag for the largest heading:
<h1>
Choose the correct HTML tag to make a text italic:
<i></i>
What is the correct HTML for inserting an image?
<img src="image.gif" alt="MyImage">
What is the correct HTML for referring to an external style sheet?
<link rel="stylesheet" type="text/css" href="mystyle.css">
What is the code to make a numbered list?
<ol> <li></li> <li></li> <li></li> </ol>
Which HTML tag is used to define an internal style sheet?
<style>
How can you make a bulleted list?
<ul> <li></li> <li></li> <li></li> </ul>
What is a simple clipping path?
A clipping path consisting of one simple shape and/or few bezier points
What is a complex clipping path?
A clipping path incorporates multiple shapes and/or many bezier points
What is an inclusive clipping path?
A clipping path that encircles an image
What is an exclusive clipping path?
A clipping path that hides an internal part of an image
What is a clipping path?
A closed vector path used to frame an image
What does the term RGB refer to?
A three color display used in digital screens: red, green, and blue.
What kind of color system is RGB?
Additive color system
In typography, kerning is...
Adjustment of the existing space between letters. ***This is between 2 letters
In typography, tracking is...
Adjustment of the existing space between letters. ***This is between all letters in a word
Which of the following file types is a vector-based format?
All of the above
Highly saturated colors are best for:
Attracting attention
Which property is used to change the font of an element?
Both font-family and font can be used
What does CSS stand for?
Cascading Style Sheets
Hexadecimal references are...
Color in HTML
The symbolism associated with specific colors is:
Culturally determined
The number of dots of ink per inch on a printed page is referred to as...
DPI (dots per inch)
Is the grid a prescriptive design tool?
False
Vector files are resolution dependent.
False
What does the term CMYK refer to?
Four colors of inks used in most printers: cyan, magenta, yellow and key (black).
"The basic framework within which a design is created." What is this the definition for?
Grid
What does HTML stand for?
Hyper Text Markup Language
I have found a raster image I want to use in my project, but it is too small (not enough pixels). What can I do to use it?
I can convert it to a vector based image.
Where in an HTML document is the correct place to refer to an external style sheet?
In the <head> section
If I upload an image to the internet with the wrong color format, what will happen?
It won't show up
What is the best file format for putting images on WebCampus?
PNG
Which internet file format can show transparencies?
PNG
What is a good way to establish hierarchy in a grid?
Position and size
How many letters and/or numbers do hexadecimal references contain?
Six
What are image modules?
Spaces created within a grid for the placement of pictorial elements.
In design vocabulary, what are columns?
The basic structure used to guide the placement of text and other elements within a design.
In typography, what is a baseline?
The invisible line on which each row of type rests (particularly, the stems and serifs of letters).
In typography, what is a x-height?
The invisible line running across the top of a lower case letter 'x' in a row of type, and from which ascenders rise.
In typography, leading is...
The space between baselines in rows of type.
In relation to legibility, leading is...
The space between lines of type
What are gutters?
The spaces separating two columns
What can you use a clipping path for?
To cut out part of an image from its background
When no text is emphasized (i.e. the design has a neutral hierarchy), where does the reader's eye go first?
Top left corner of the page
A pixel based image and a bitmap image are the same.
True
Because fonts are vector objects, it is better to work on them in vector editing programs
True
Illustrator makes files using vectors
True
The number of pixels in a pixel-based image is fixed
True
When you increase the size of a pixel-based file, the image becomes blurry.
True
Triadic color combinations...
Use colors that are at the points of an equilateral triangle inside the color wheel.
Complementary color combinations...
Use colors that are directly across from each other on the color wheel
How do you display hyperlinks without an underline?
a {text-decoration:none;}
How do you change the color of hyperlinks when the user's mouse hovers over them?
a:hover {color: #FF3333;}
Which property is used to change the background color?
background-color
How do you add a background color to a whole website?
body {background-color:#FFFFFF;}
Which is the correct CSS syntax?
body {color: black;}
Using CSS, how do you display a border like this: The top border = 10 pixels The bottom border = 5 pixels The left border = 20 pixels The right border = 1 pixel?
border-width: 10px 1px 5px 20px; ****(top right bottom left)
Which property is used to change the font color?
color
Which CSS property controls the text size?
font-size
What is the correct CSS syntax for making all the heading elements bold?
h1, h2, h3, h4, h5, h6 {font-weight:bold;}
How do you make a list that lists its items with squares?
list-style-type: square;
Which property is used to change the left margin of an element?
margin-left
Why can vector images be scaled infinitely without any loss in quality?
o Because there aren't any pixels to lose. o Because they are constructed of mathematically calculated vectors.
Which programs can be used to make clipping paths?
o InDesign o Illustrator o Photoshop
What does RGB stand for?
red, green, blue
Which HTML attribute is used to define inline styles?
style
How do you make each word in a line of text start with a capital letter?
text-transform:capitalize
Vector files are always sharp, no matter how big they are presented, and no matter whether they are viewed on screen or printed on paper.
yes