web 5,6,8,9

¡Supera tus tareas y exámenes ahora con Quizwiz!

Choose the HTML5 element below that is used to configure an area on a web page that can stand on its own and could potentially be syndicated.

article

The ________ HTML5 element is used to tangential or supplemental content.

aside

Use the ________ attribute to configure the width of a table border.

border

To configure the table cells to share a common border and eliminate the default space between table cells configure ________.

border-collapse: collapse;

Select the HTML tag below that configures a button that, when clicked, will automatically reset form fields to their default values.

both <input type="reset"> and <button type="reset">Reset</button>

Use the ________ or ________ property to clear a float.

clear or overflow

Select the example below that could be used to clear a right float.

clear: right;

The ________ pseudo-class configures the appearance of the hyperlink before it is clicked

link

Set list-style-type to the value ________ to hide the display of the list markers on an ordered list.

none

Select the value of the type attribute that configures an HTML5 spinner control.

number

Choose the example below of a descendant selector that configures the anchor tags within the element assigned to the an id named special.

#special a

The purpose of the ________ element is to describe the contents of a table.

<caption>

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

<form>

Select the type of form control that "disguises" the characters that are typed.

<input type="submit" >

Select the HTML tag below that configures a textbox with the name "email" and a width of 40 characters.

<input type="text" name="email" size="40" >

The purpose of the ________ is to configure a label for a <fieldset>.

<legend>

Use the headers attribute on the ________ tag to correspond to the id attribute on a <th> tag.

<td>

Choose the HTML tag below that would configure a scrolling text box with the name "feedback", 3 rows, and 60 characters.

<textarea name="feedback" rows="3" cols="60"></textarea>

Use the ________ tag pair to configure a table footer row group.

<tfoot> .. </tfoot>

Use ________ element to indicate column or row headings.

<th>

Use the ________ tag pair to configure table headings.

<th> </th>

Use the ________ tag pair to configure a table head row group.

<thead> .. </thead>

Use the ________ tag pair to begin and end a table row.

<tr> </tr>

Select the statement below that is true about forms.

A form can be used to pass information to a program or script on the web server.

Select the true statement from the choices below.

A scrolling text box is created using an input element with type="textarea". B) A text box is created using the input element with type="box". C) A select list is created using select and input elements. Correct Response None of these statements are true.

_____ flow displays the elements on the page in the order they appear in the web page source code.

A) Normal

________ is a standard method or protocol for web pages to request special processing on the web server, such as database queries, sending e-mails, or handling form data.

Common Gateway Interface

Select the example below that configures a container to clear all floated elements that are within the container.

overflow: auto;

The ________ is the area between the content and the border.

padding

Use the CSS ________ property to configure the cellpadding of a table.

padding

When configuring the background color of an element, the background color is applied to both the content and ________ areas.

padding

The box model consists of a content area surrounded by:

padding, border, and margin

The four principles of WCAG 2.0 are as follows:

perceivable, operable, understandable, robust

Use the ________ property along with the left, right and/or top property to precisely configure the position of an element.

position:absolute;

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

proximity

Select the value of the type attribute that configures an HTML5 slider control.

range

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

visually grouped sections of hyperlinks

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

Choose the item below that is not an HTML5 element.

wrapper

The ________ HTML5 element is used to configure the top logo area on a web page.

header

Use the ________ attribute on a <td> element to associate it with a table heading cell.

headers

Select the most commonly used site organization for commercial websites.

hierarchical

Select the three most common methods of organizing websites.

hierarchical, linear, and random

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

in different ways

A table with a width set to 600 pixels will look ________ on a monitor with resolution set to 640 × 480 than on a monitor with resolution set to 1024 × 768.

larger

The default value for the border property for an element is:

0 pixels

Select the most popular screen resolution from those listed below.

1024 by 768

Which of the following CSS3 pseudo-elements could be used to apply styles to the last row of a table?

:last-of-type

Which of the following CSS3 pseudo-elements will be useful when configuring every other row of a table?

:nth-of-type(n)

When using the box model, the ________ is always transparent.

margin

Which of the following configures a margin for an element with the following values: top margin 30 pixels, left margin 150 pixels, right margin 0 pixels, and bottom margin 0 pixels?

margin:30px 0 0 150px;

Select the attribute used to limit the number of characters that a text box will accept.

maxlength

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

monochromatic

When configuring a group of radio button form controls, the value of the ________ attribute on each radio button must be the same.

name

What attributes are valid for the <select> tag?

name, id, multiple, selected

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

nav

Choose the example below of a descendent selector that configures the anchor tags with the nav element.

nav a

Which of the following CSS3 properties configure the alignment of text within a table?

text-align

Use an id to configure a style when:

the style will apply to only one element on a page.

The CSS to create the class called myfloat that floats to the right of the other page content, has a 10px margin, and a solid border is:

.myfloat { float:right; margin:10px; border: 1px solid #000000; }

Choose the example below that configures a comment in CSS.

/* comment */

Consider ________ when designing for display on a mobile device.

All of these

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

All of these

Select the true statement below.

Animation should be used only if it enhances your website.

The ________ pseudo-class configures the styles that will apply when the mouse is on a hyperlink.

C) hover

From the choices below select the correct order to code CSS pseudo-classes.

C) link, visited, hover, active

Use the ________ attribute on the <form> tag to specify the name and location of the script that will process the form control values.

action

Is the following code valid in HTML5? <table border="1" cellspacing="5" cellpadding="5">

No, the cellspacing and cellpadding attributes are obsolete.

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

One Web

Select the true statement below.

Placing white space around graphics and headings helps them to stand out.

Select the true statement from those listed below.

The input element with type="email" will cause browsers that do not support the attribute to display a text box.

The CSS border-spacing property can be used to configure the horizontal and vertical spacing of table borders.

True

The CSS vertical-align property can be used to configure the vertical alignment of the contents of a table cell.

True

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 frames whenever possible.

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

Web Accessibility Initiative

Choose the best answer below to the following question: Is the following CSS code valid? table { border: 2px #000000 solid; border-collapse: collapse; }

Yes.

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

a different background color on each page

Select the HTML below that would associate a label displaying the text "Phone" with the text box named customerPhone.

both <label>Phone: <input type="text" name="customerPhone" ></label> and <label for="Phone">Phone: </label><input type="text" name="customerPhone" id="Phone" >

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

both Provide alternative text for the images and Place text links at the bottom of the page

Which of the following CSS3 properties position the caption of a table?

caption

To define the distance between the cell text and the cell border in a table, use the ________ attribute.

cellpadding

The table element's ________ attribute is valid when using HTML5 syntax.

cellspacing

To define the distance between the edges of each cell in a table use the ________ attribute.

cellspacing

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.

check box

To apply a style to one or more elements on a web page, configure a CSS ________.

class

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

contrast

The HTML5 ________ form control provides the user with a selection of choices along with an option to enter information.

datalist

Choose the item below that is not a valid value for the input element's type attribute.

e-mail

Select the best description of "white space."

empty screen area around blocks of text and images

Use ________ positioning to configure the location of an element to remain the same and to not move even when the web page is scrolled within the browser viewport.

fixed

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

flexible

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

float:right;

Use the ________ property to configure an image to use as a bullet point in an unordered list.

list-style-image

Use ________ positioning to slightly change the location of an element in relation to where it would otherwise appear when rendered by a browser.

relative

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

An HTML table is comprised of ________.

rows and columns

Select the form control below that would be appropriate to accept comments about your website.

scrolling text box

An order form contains an area for web visitors to select their state or province. You need to limit the amount of space on the form that is used for this feature. Select the form control that is best to use for this purpose.

select list

Select the form control below that does not use the <input> tag.

select list

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

shade

Select the attribute used to limit the width of a text box as displayed in a browser.

size

Select the item below that lists elements used in an HTML table:

table, tr, td


Conjuntos de estudio relacionados

Intro to Mass Comm. Chapter 4 quiz answers

View Set

Oxymorons, Idioms and Puns Review

View Set

Chapter 47 Assessment of Auditory Function

View Set