web design midterm

Réussis tes devoirs et examens dès maintenant avec Quizwiz!

small

The purpose of the ________ element is to contain information that would typically be some type of fine print or a disclaimer of some kind.

footer

The purpose of the ________ element is used to configure the footer information on a web page document.

header

The purpose of the ________ element is used to configure the headings for a web page document or section of a web page document.

nav

The purpose of the ________ element is used to configure the main navigation area on a web page.

TCP

The purpose of the ___________ protocol is to ensure the integrity of the communication.

The content that displays in the browser is contained in the body section

Choose the true statement below. The content that displays in the browser is contained in the head section. Information about the web page is contained in the body section. Correct The content that displays in the browser is contained in the body section. all of the above

<caption>

Configures a description of the table

It is a CSS class that styles only one type of element

Consider the CSS style p.paint {color: red}.

ID

Consider the following embedded style: <style type="text/css"> #extra {color: red} </style> The term "#extra" is called a/an __________________ selector.

True

Consider the following embedded style: <style type="text/css"> .blue {color: blue} </style> This style can be applied to any element in the body of the web page such as <p>, <h1>, <address>, <blockquote>, etc

Element Selector

Consider the following lines of codes written inside the <head> section of a web page: <style type="text/css"> h2 {color: green;} </style> In the above style, the complete and correct technical name for the term "h2" is:

link, visited, hover, active

Correct order to code CSS pseudo-classes for the link element

<td>

Data cells in a Web table are displayed using a ____ tag.

<table>

Element that contains the table

<td>

Element that contains the table cell

Know what takes precedence: embedded or external styles.

Embedded

URL

Every web page on the web has a complete and unique address, and it is called the __________

-XHTML (HTML)

Extensible Hypertext Markup Language •Stricter method of writing HTML code

False

The following style will not work correctly because it is missing a period "." or the "#" symbol before the term "address". address {text-align: center}

#id {style rule}

To apply a style to an element marked with a specific id value, use the declaration

Class

To apply a style to one or more of elements on a web page, which CSS style selector should be used?

unordered list

What type of HTML list would be good to use to display a list of terms and their definitions?

When you need to link to a web page internal to your website

When should you use a relative hyperlink?

When you need to link to a web page external to your website

When should you use an absolute hyperlink?

will turn into a little hand.

When you move the cursor over a link in a Web page, the arrow

your most preferred font followed by some alternative favorite fonts, and complete the list with a generic font family

When you use fonts for your web page, you naturally start with

br

Which element is used to force the browser to display the next text or element on a new line?

nav p

Which of the following is a CSS selector that will configure the paragraph elements within the nav element?

style

Which of the following is an HTML attribute that configures inline styles?

True

Writing an embedded style rule including many style properties on a single line saves space, but entering each style property on a separate line separated by semi-colons often makes your code easier to read and edit.

A _______________color scheme consists of three colors that are equidistant on the color wheel.

triadic

A(n) _______________color scheme consists of three colors that are equidistant on the color wheel

triadic

Select a good design recommendation for text hyperlinks.

use a key phrase as a hyperlink

Which of the following is not a web design recommended practice?

use dark text on dark backgrounds

Which of the following is not a web design recommended practice?

use frames whenever possible

The main site navigation or a section offering navigation choices should contain:

visually grouped sections of hyperlinks

16. A ____________ is a sketch or blueprint of a web page that shows the structure (but not the detailed design) of basic page elements such as the logo, navigation, content, and footer.

wireframe

A ____________ is a sketch or blueprint of a web page that shows the structure (but not the detailed design) of basic page elements such as the logo, navigation, content, and footer.

wireframe

Select the true statement below.

a. Placing white space around graphics and headings helps them to stand out. b. There is no need for a lot of navigation because web site visitors can just use the back button. c. Very small text is good to use for web site appealing to the baby-boomer and older market. d. Children like sites with dark colors. A is the answer

Select the recommended design practice that applies to a website using images for main site navigation.

a. provide alternative text for the images b. place text links at the bottom of the page c. both a and b d. no special considerations are needed C is the answer

Consider _______ when designing for display on a mobile device.

a. small screen size b. font size c. contrast d. all of the above D is the answer

Select the items below that can help to appeal to the intended or target audience of a site.

a. the amount of color used on the site b. the font size and styles used on the site c. the overall look and feel for the site d. all of the above D is the answer

Select the item below that does not belong in a consistent website design.

a. the same fonts on each content page b. the same logo in the same location on each content page c. a similar navigation area on each content page d. a different background color on each page D is the answer

Select the items below that can be used as a CSS Selector. Question options: an HTML element a class name an id name All of the above

all of the above

Style sheets

are declarations that describe the layout and appearance of a document

Tables

are used on webpages to organize tabular information

An external style sheet used the ___ file extension a. ess b. css c. htm d. No file extension is necessary

b

Select the code below that uses CSS to configure a class called "offer" with blue text that uses Arial or sans-serif font typeface. a. #offer { color:blue; font-family: Arial, sans-serif;} b. .offer { color:blue; font-family: Arial, sans-serif;} c. .offer { text:blue; font-family: Arial, sans-serif;}

b

To associate an external style sheet with a web page, code: a. a link element in the body section of the web page b. a link element in the head section of the web page c. a style element in the body section of the web page d. a style element in the head section of a web page

b

Use the ___ tag to code embedded styles on a web page. a. <link> b. <style>...</style> c. <embed> d. none of the above

b

Use the ___ tag to configure a generic area on a web page that is embedded within a paragraph or other block display element. a. <div>...</div> b. <span>...</span> c. <title>...</title> d. <meta>...</meta>

b

When CSS is coded in the body of a web page as an attribute of an HTML tag, it is called ____ a. Embedded b. Inline c. External d. Imported

b

Which CSS property can be used to configure italic text? a. font-italic b. font-style c. font-weight d. font-type

b

Which CSS property configures the capitalization of text? a. font-type b. text-transform c. text-decoration d. font-weight

b

Which CSS property configures the size of text? a. text-size b. font-size c. size d. font-weight

b

The ___ property configures a shadow effect on the text displayed within an element. a. font-weight b. shadow c. text-shadow d. font-style

c

The declaration property used to set the text color on a web page is: a. bgcolor b. text-color c. color d. None of the Aboce

c

To apply a style to a certain group of elements on a web page, configure a CSS ____ a. group b. ID c. class d. None of the Above

c

Use the ____ property to configure bold text using CSS a. bold b. font-style c. font-weight d. you cannot configure bold text with CSS

c

Which CSS property configures the color of text? a. text-color b. font-color c. color d. font-style

c

Which CSS property configures the font typeface? a. font-face b. font-type c. font-family d. font-style

c

The Box Model

describes the structure of page elements as they are laid out on the Web page Margin Padding Border

What CSS selector configures paragraph elements within a footer element?

footer p

Which of the following is a CSS selector that will configure the paragraph elements within the footer element. Question options: p footer footer p #footer p .footer p

footer p

Select the most commonly used site organization for commercial web sites

hierarchical

Select the most commonly used site organization for commercial web sites.

hierarchical

Select the three most common methods of organizing web sites.

hierarchical, linear, and random

Select the three most common methods of organizing websites.

hierarchical, linear, and random

To apply a style to exactly one element on a web page, configure a CSS _____________. Question options: group id class None of the above

id

Which type of selector is specified by placing a # symbol in front of the selector name? Question options: tag first class id

id

The process of creating an image with the lowest file size that still renders a good-quality image is called ______________.

image optimization

Different browsers and even different browser versions will display your web page ______.

in different ways

Where is a code located that associates a web page with an external style sheet?

in the head section

Where do you place the code to associate a web page with an external style sheet? Question options: in the external style sheet in the DOCTYPE of the web page document in the body section of the web page document in the head section of the web page document

in the head section of the web page document

When CSS is coded in the body of the web page as an attribute of an HTML tag it is called ________. Question options: Embedded Inline External Imported

inline

According to the CSS order of precedence, ______ styles override ________ styles. Question options: external, embedded embedded, inline inline, external external, inline

inline, external

splash screen

is a Web page containing interesting animation or graphics that introduces a Web site

A selection list <select size= "value">... </select>

is a list box from which a user selects a particular field value or set of field values.

navigation bar

is a set of hyperlinks that users click to connect to the major pages of your website.

A Spanning cell colspan="value"

is a single cell that occupies more than one row or one column in the table

Cascading Style Sheets (CSS)

is a style sheet language used on the Web

An external style sheet

is a text file that contains style declarations

HTML

is a text-based language, requiring you to define your colors in textual terms

A hyperlink (or link)

is a word, group of words, or image that you can click on to jump to a new document or a new section within the current document

A tooltip Example: <a href="http://www.yahoo.com" target="_blank" title="Go to Yahoo site to check your horoscope." > Go To Yahoo </a

is descriptive text that appears when a user positions the mouse pointer over a link

Kerning

is the amount of space between characters (default unit is pixels (px))

Tracking

is the amount of space between words and phrases

Leading

is the space between lines of text

Use the ______ element to associate a web page with an external style sheet. Question options: target a include link

link

What element is used to associate a web page with an external style sheet?

link

A ___________ color scheme consists of shades, tints, or tones of the same color.

monochromatic

A(n) ___________ color scheme consists of shades, tints, or tones of the same color.

monochromatic

What CSS selector configures anchor elements within the nav element?

nav a

A page layout technique that often uses a percentage value for width is called _____________.

not ice or fixed

Which of the following is correct CSS syntax? Question options: p { color: #000000; } p { color=#000000; } p : color #000000; p { color;#000000; }

p { color: #000000; }

Know correct vs. incorrect CSS syntax.

p {color:#000000; }

The four principles of WCAG 2.0 are as follows:

perceivable, operable, understandable, robust

Select the recommended design practice that applies to a web site using images for main site navigation.

provide alternative text for the images configure text hyperlinks at the bottom of the page

When applying the design principle of __________ related items are grouped together.

proximity

Progressively enhancing a web page for different viewing contexts (such as smartphones and tablets) through the use of coding techniques is called _________________________.

responsive web design

What symbol terminates a style declaration?

semi-colon (;)

A ____ of a color is darker than the original color and is created by mixing the color with black.

shade

What element is used to create logical areas on a web page that are embedded within paragraphs?

span

Which of the following will configure all the span elements with red (#FF0000) text color? Question options: span { color: #FF0000; } #span { color: #FF0000; } .span { color: #FF0000; } <span style="color: #FF0000;">

span { color: #FF0000; }

Know how to correctly configure span elements with red (#FF0000) text.

span {color:#FF0000;}

Use the _____ element to code embedded styles on a web page. Question options: link style embed css

style

What HTML attribute configures inline styles?

style

What element is used to code embedded styles on a web page?

style

em

Choose the preferred element to use when emphasizing text that is intended to be displayed in italic font style.

Use tables to organize tabular information such as schedules

Choose the recommended use of tables on web pages

Cascading Style Sheets - CSS

Separates structure of a web page from the appearance of the page

<head>

The "embedded style sheet" is generally placed in the ______ section of the web page for ease of maintenance.

Select the code below that configures a class called "offer" with blue text using CSS. Question options: offer { color: blue; } .offer { color: blue; } .offer { text: blue; } #offer { color: blue; }

.offer { color: blue; }

Know how to code a class called "offer" with red text using CSS.

.offer {color:blue; }

Advantages of web expression

-Creates all XHTML and CSS code for you -Creates Web pages as they will appear in browser -Contains Expression Encoder and Expression Design -Creates links to Web pages and updates the XHTML code -Contains powerful file management tools -Contains full range of editing tools

Select the most popular screen resolution from those listed below.

1366 by 768

When was CSS approved by the W3C?

1996

False

<style type="text/css"> body {background-color: ivory} p {background-color: lightgray} </style> Since all paragraphs are supposed to be the children of the web page body, the background color of all the paragraphs will be "ivory" by inheritance, even though it is defined to be "lightgray".

1. Linking to Locations within the Same Web Page 2. Linking Between Web Pages in Your Web Site 3. Linking to Resources on the Internet

3 Major Types of Links

Limit the file size of a web page and its associated media to ______ avoid overly long load times

60KB

URL, URI

A ____ is a type of _____.

network

A ________ consists of two or more computer connected for the purpose of communicating and sharing resources.

subdomain

A _________ can be configured to house a separate website located at the same domain.

IP Address

A domain name is a unique text-based Internet address corresponding to a unique ____________.

IP address

A domain name is a unique text-based Internet address corresponding to a unique ____________.

XML

A language using a text-based syntax intended to extend the power of HTML by separating data from presentation is called _______

XML

A language using a text-based syntax intended to extend the power of HTML by separating data from presentation is called _______.

links to the most important major sections of the website, plus a link to the Home page.

A navigation bar should contain

WAN

A network that is geographically dispersed and may use some form of public or commercial communications network is called a(n):

type="textarea"

A scrolling text box (comment box)is created using an <input> element with attribute ______.

True

A scrolling text box (comment box)is created using an <input> element with attribute type="textarea"

html

A web page document is contained between opening and closing ________tags.

The heading "Go Racers!" will be displayed in blue color

A web page has the following two embedded styles defined in the <head> section: <style type="text/css"> body {color: ivory} h1 {color: red} </style> Joe wrote the following paragraph in the <body> section of the same page: <h1 style="color: blue"> Go Racers! </h1> When the web page is viewed in the browser, what color will the paragraph be rendered in?

specific file in your local client computer

A web page links can take your visitors to the following destinations, except

accessible

A(n) _______ website provides accommodations to individuals with visual, auditory, physical, and neurological disabilities.

attribute

An ________________ modifies or further describes the function of an element.

style inheritance

An additional factor in applying a style sheet is that properties are passed from a parent element (e.g., <body>) to its children (e.g., <p> in body) in a process known as __________.

as many web page documents as needed, even from different Web sites

An external style sheet can be attached to ____.

<link>

An external style sheet is included in the web page that calls and uses the external style sheet file by adding the______ element in the <head> section of the web page.

Select the true statement below.

Animation should be used only if it enhances your web site

What type of file extension does External Style Sheet use?

CSS

Explain inline

CSS is coded in the body of the web page as an attribute of an HTML tag

Explain selectors and declarations

CSS rules are comprised of selectors and declarations

blockquote

Choose the element that configures text to be indented from both the left and right margins.

dt, dd, dl

Choose the element that configures text to be indented from both the left and right margins.

li

Choose the elements that are used in a description list.

W3C

Choose the organization listed below that takes a proactive role in developing recommendations and prototype technologies related to the Web

strong

Choose the preferred element to use when configuring important text that is intended to be displayed a bold font style.

b

Choose the preferred element to use when displaying text in a bold font style when there is no special importance to the words in the text.

i

Choose the preferred element to use when displaying text in italic font style when there is no special emphasis on the words in the text.

float: right;

If an element is configured with ___________ the other content on the page will appear to its left

<thead> <tbody> <tfoot>

HTML allows you to identify the different parts of your table using the ____ tags.

What can be used as a CSS selector?

HTML element, class name, ID name

<a href="services.html"> Services </a>

How would you configure a hyperlink from the index.html file to another file named services.html which is located in the same folder?

What CSS code is used to apply a style to exactly one element on a web page?

ID

What type of selector is specified by placing a # symbol in front of the selector?

ID

destination target for a link

In Expression Web, a bookmark is a place within a web page document that can be used as a(n) ____.

False

In Expression Web, the Design view offers a perfect replica of how the page will appear in the browser

Padding

In a box model, the ____ is the area between the content and the box's border

0 pixels

In a box model, the default value for the box's border property is __________.

<title>

In the following HTML code, one tag is definitely out of place in the wrong area. Which one is it? <html> <head> <!-- Topic: EXAM 1--> <!-- Author: Joe Blow --> <!-- Date: 10-3-13--> </head> <body> <title> Central Valley Web </title> <h1> Central Valley Visitor Bureau </h1> <p> Central Valley offers plenty of paths that allow visitors to hike or bike among nature's beauty. <br /> Some people even bring a picnic lunch. </p> </body> </html>

True

In the following HTML code, there are a total of 10 spaces between the words "Hello" and "There". When the page is rendered on the browser, only a single space will be displayed between the two given words. <p> Hello There </p>

Know what takes precedence: external or internal styles.

Inline

Know and understand which CSS styles override other CSS styles.

Inline Embedded

World Wide Web Consortium (W3C)

International organization that controls HTML and CSS standards

No, there is a missing closing td tag

Is the following HTML code valid? <table> <tr> <td>cell 1</td> <td>cell 2</tr> </tr> </table>

p.indent {text-indent: 5%}

Joe Blow wants to indent only some (not each and every) paragraphs in a web page by 5%. So, which of the following embedded style would you recommend as the best error-proof option?

<a> tag

Links are specified in HTML using the

ICANN

New Top Level Domains (TLDs) are coordinated by

Only h1, h2, and h3 will be underlined.

No style application to <p> in the <body> is necessary since the style is applied automatically

False

On a web page, the following HTML code will create correctly a bulleted list of three items: <li> <ul> One </ul> <ul> Two </ul> <ul> Three </ul> </li>

create a hyperlink to the destination at the source content using the same id inside <a> Example: <a href="#Hr"> Hours </a>

Once you have marked the destination tag using the id attribute,

The concept of _____________ relates to providing a single resource that is configured for optimal display on multiple types of devices.

One Web

SMTP, POP3, IMAP

Select protocols that are used for e-mail processing.

<input type="reset">

Select the HTML code to configure a button that, when clicked, will automatically reset form fields to their default values.

anchor

Select the element used to hyperlink web pages to each other from the list below:

fieldset

Select the element used to visually group a number of form controls.

launch the default e-mail application for the visitor's browser with your e-mail address as the recipient automatically send you an e-mail message with the visitor's e-mail address as the reply-to field

Select the function of an e-mail link from the choices below. The content that displays in the browser is contained in the head section. The content that displays in the browser is contained in the body section. Information about the web page is contained in the body section. All of the above are true.

com

Select the item below that lists the top level domain name for the URL http://www.yahoo.com.

To allow communication between researchers and links between research papers

Select the main reason for the initial development of the World Wide Web from the list below:

Invalid code may cause browsers to render the pages slower than otherwise.

Select the true statement from the choices below. A web page will not display in a browser unless it passes syntax validation testing. A web page must pass syntax validation testing before it is used. Validation testing guarantees that your web page will looks good. Invalid code may cause browsers to render the pages slower than otherwise.

None of the statements above are true

Select the true statement from the list below. When a domain name ends in .com it indicates that it is a computer company. A country code domain name can only be owned by someone who resides in that country. Only non-profit organizations can purchase a .org domain name None of the statements above are true

Cascading Style Sheet rules are comprised of: Question options: Selectors and Declarations Properties and Declarations Selectors and Attributes Elements and Attributes

Selectors and Declarations

<table>, <tr>, and <td> elements

Tables are configured with what elements?

Boldface

Text formatted with <th>tag is dispayed in a ___ font.

True

The Marketing Department in a company has created an external style sheet called "market.css" to be used in their marketing-related web pages. If needed, all or some of the styles in this market.css style sheet can also be used by the Human Resources Department of the same company for the HR-related web pages.

IP

The ____ protocol is a set of rules that controls how data is sent between computers on the Internet.

target

The __________ attribute of the anchor element can cause the new web page to open in its own browser window.

hr

The element used to create a horizontal line on a web page is:

NCSA

The first widely used graphical web browser was developed at:

False

The following "inline" style will work correctly. <h1 style = "text-align: right color: blue"> Go Racers! </h1>

False

The following HTML code will make the image of smiley a hypertext link so that when the image is clicked, the CNN page will be loaded: <img href="http://www.cnn.com" src="smiley.jpg" alt="image of smiley" />

True

The following email link is correctly written: <a href="mailto:[email protected]"> Contact Me By Email for CSC 125 Help </a>

No style application to <p> in the <body> is necessary since the style is applied automatically

The following embedded style is defined in the <head> section: <style type="text/css"> p {color: red} </style> Which of the following style application would you apply in the <body> section to a paragraph with the content "To be or not to be." so that the paragraph's color is turned red

False

The following is an embedded style defined in the <head> section that attempts to set the font type for <h1> type header: <style type="text/css"> h1 {font-family: Comic Sans MS} </style> The above style will work correctly without any problems

Three choices of font type are listed with "Arial" being the first choice

The following is an embedded style defined in the <head> section: <style type="text/css"> p {font-family: Arial, Helvetica, sans-serif;} </style>

False

The following style definition is to be written as an embedded class style in the <head> section. It is syntactically correct: <style type="text/css"> mid {text-align: center} </style>

True

The machine that translates the numerical IP address of a computer on the Internet (e.g., 64.236.24.4) to a more user-friendly textual name (e.g., CNN's site) is called the Domain Name Server (DNS).

To allow communication between researchers and links between research papers

The main reason for the initial development of the World Wide Web.

head

The meta element is coded in the ___________ section of a web page document

head

The meta element is coded in the ___________ section of a web page document.

Cloud Computing

The on-demand use of software and other computing resources hosted at a remote data center (including servers, storage, services, and applications) over the Internet.

World Wide Web Consortium (W3C)

The organization listed below that takes a proactive role in developing recommendations and prototype technologies related to the Web.

Displayed in the title bar of the browser window

The text contained between title tags is:

use the border attribute <table border="value">...</table>

To add a border to a Web table using HTML,

rowspan="value"

To create a table that spans several rows add

border-spacing: 0;

To eliminate the space between table cells (or double grid lines), use the ___________ property.

mark the tag in the destination location with an id attribute. IDs must be unique Example: <h3 id="Hr"> Hours </h3>

To jump to a specific location within a document, you first need to

use the previously-set id for the destination location in page2.html. Example: <a href="page2.html#XYZ"> Go to Page 2 </a>

To link to a specific location in page2.html

use the URL of the site: <a href="http://www.yahoo.com"> Go to Yahoo </a>

To link to a third-party web site on the Internet

<a href="mailto:[email protected]"> CSC 125 Class </a>

To link to an email

use the tag <a> in page1.html to create the following link. <a href="page2.html"> Go to Page 2 </a>

To link to page2.html from page1.html,

table

Use the ______ element to contain an HTML table

<div>

Use the ______ element to create a generic area or section on a web page that is physically separated from others

div

Use the ______ element to create a generic area or section on a web page that is physically separated from others.

3

Using CSS, you can apply styles to a web site in __________ different way(s):

Select the group whose mission is to create guidelines and standards for web accessibility.

Web Accessibility Initiative

Select the group whose mission is to create guidelines and standards for Web Accessibility

Web Accessibility Initiative (WAI)

description list

What element contains each item in an ordered or unordered list?

p

What element is used to configure a new paragraph?

h1

What element is used to create the largest heading?

ordered list

What type of HTML list will automatically place a list marker, or bullet point, indicator in front of each item?

The content that displays in the browser is contained in the body section

What type of HTML list will automatically place a number in front of the items?

Inline

You suggest to Leon that he is defeating the goal of separating web page content from page formatting. What type of style is he making excessive use of?

check box

You would like to conduct a survey and ask your web page visitors to indicate the computer operating systems that they use. Each visitor could use more than one computer operating system. Select the form control that is best to use for this purpose

HTTP

______ is a set of rules for exchanging files such as text, graphic images, sound, video, and other multimedia files on the Web.

Xhtml

_________ combines the formatting strengths of HTML 4.0 and the data structure and extensibility strengths of XML

XHTML

_________ combines the formatting strengths of HTML 4.0 and the data structure and extensibility strengths of XML.

CSS was first proposed as a standard by the W3C in ___ a. 1996 b. 2002 c. 1992 d. None of the Above

a

Cascading Style Sheet rules are comprised of: a. Selectors and Declarations b. Properties and Declarations c. Selectors and Attributes d. None of the Above

a

Select the code below that uses CSS to configure a background color of #eaeaea for a web page. a. body { background-color:#eaeaea} b. document {background-page:#eaeaea} c. body {bgcolor:#eaeaea} d. None of the Above

a

Use the ____ tag to configure a section of a web page that is physically separated from others. a. <div>...</div> b. <span>...</span> c. <a>...</a> d. <i>...</i>

a

Select the item below that does not belong in a consistent web site design.

a different background color on each page

Select the true statement below.

a. Animation should be used to appeal to all target audiences b. Animation should be used only if it enhances your web site c. Animation should be used as much as possible to make your web site exciting. d. None of the statements are true B is the answer

What CSS property is used to set the background text color?

background-color

Which of the following is the CSS property used to set the background color? Question options: bgcolor background-color color none of the above

background-color

Which of the following is the CSS property used to set the text color? Question options: bgcolor background-color color none of the above

background-color

Know how to correctly code a background color of #eaeaea on a web page using CSS.

body {background-color:#eaeaea; }

Select the code below that uses CSS to configure a background color of #eaeaea for a web page. Question options: body {background-color:#eaeaea; } document {background-page:#eaeaea; } body {bgcolor:#eaeaea; } None of the above

body {background-color:#eaeaea; }

Select the code below that uses CSS to configure an id named "example" that configures small, italic text. a. #example { font-size: small; font-weight: italic;} b. .example { font-size: small; font-style: italic;} c. #example { font-size: small; font-style: italic;}

c

To apply a style to one or more of elements on a web page, configure a CSS _____________. Question options: group id class attribute

class

What CSS property is used to set the text color?

color

Know how to apply a style to one or more elements on a web page using CSS.

configure a CSS class

Applying the design principle of __________ serves to add visual interest and draw attention

contrast

An External Style Sheet uses the _____ file extension. Question options: ess css html No file extension is necessary

css

Select the items below that can be used as a CSS selector. a. an HTML element b. a class name c. an ID name d. All of the Above

d

use the ___ tag to associate a web page with an external style sheet. a. <target> b. <a> c. <include> d. <link>

d

The Web Safe Color Palette is a collection of 216 colors that

display the most similar on both the Mac and PC platforms

Use the ______ element to create a generic area or section on a web page that is physically separated from others. Question options: div strong h1 small

div

What element is used to create a generic area or section on a web page that is physically separated from others?

div

<tr>

element that contains a table row

Select the best description of "white space".

empty screen area around blocks of text and images

A page layout technique that often uses a percentage value for width is called _____________.

fluid


Ensembles d'études connexes

semiologie medicala si chirurgicala

View Set

TXTOKT02 - Lý thuyết xác suất và thống kê toán 1 (3TC)

View Set

Project Management Chapter 3 Quiz

View Set

Environmental Emergencies Questions

View Set

Campbell Biology: Chapter 28- Protists

View Set

Which Online Services Will Stay after the Pandemic?

View Set

BCOMM- Chapter 9 - Routine Business Messages

View Set