Term 1

A rule that defines the appearance of an element on a Web page.

Definition 1

Style

Term 2

A language that allows a Web developer to write code statements that control the style of elements on a web page.

Definition 2

Cascading Style Sheets (CSS)

Term 3

Allows you to change the style for a single element on a Web page, or to change the style of elements on all pages in a Web site.

Definition 3

Style Sheet
-

Term 4

The type of style sheet that allows you to add a style to an individual HTML tag.

Definition 4

Inline Style Sheet

Term 5

The type of style sheet that allows you to define the style for an entire Web page.

Definition 5

Embedded Style Sheet

Term 6

the type of style sheet you create a textfile that contains all the styles you want to apply and then save the text file with the extension .css.

Definition 6

External Style Sheets
-

Term 7

Is made up of a selector and a declaration that defines the style for one or more properties.

Definition 7

Style Statement

Term 8

The part of the style statement that identifies how the elements should appear.

Definition 8

Declaration

Term 9

Defines the style of a link when a mouse pointer points to it.

Definition 9

An A Selector
-

Term 10

In CSS, you can create several different variations for any one tag with this.

Definition 10

Classes

Term 11

CSS is a separate language use to enhance the display capabilities of what?

Definition 11

HTML

Term 12

With this type of style, you add the style sheet within the <head> tags of the HTML document to define the style for the entire Web page.

Definition 12

Embedded Style
-

Term 13

The part of the style statement that that identifies the page elements is called what?

Definition 13

Selector

Term 14

For the Border property, which of the following would be a valid option?

 

A     family

B     Style

C     Variant

D     weight

 

Definition 14

Style

Term 15

Which of the following is NOT an option for the background property?

 

A     color

B     image

C     size

D     position

Definition 15

Size
-

Term 16

What are the two kinds of selectors?

Definition 16

Selector A - indicates a link element

Selector P - indicates text in paragraph

Term 17

The code for an embedded style sheet must be inserted within what start and end tag?

Definition 17

<Style>  </style>

Term 18

An example of an Inline Style.  Code is placed inside the opening tag of the desired tag.

Definition 18

style="property:value"

Example:  <p style="color:red">

-

Term 19

An example of an internal Style sheet.  Code is placed in the <head> section.

Definition 19

<style type="text/css">

jr{color:red;}

</style>

Term 20

An example of an external style sheet.  Links the webpage to an external style sheet.

Definition 20

<head>

<link rel="stylesheet"type="text/css" href="mystyle.css"/>

</head>

Term 21

Examples of Body Styles

Definition 21

background-color:yellow;  sets the background color

background-image:url('paper.gif'); sets the background image

-

Term 22

Examples of Text Styles

Definition 22

color:red; Changes the text color.  Values: name, hexadecimal (#ff000), rgb(255,0.0).

text algin: center; Aligns the text horizontally.

text-decoration:underline; Underlines text

text-decoration:50px; indents text from the left

text-transform:uppercase;Controls capitaliztion. Values : none, capitalize, uppercase, lowercase

Term 23

Examples of Font Styles

Definition 23

font-family:arial: Sets the typeface for text.

font-size:100%; Set the font size

font-style: normal; Sets the font style for paragraphs. Values: normal, italic, oblique

Term 24

Examples of Link Styles

Definition 24

a:link{color:#FF0000;} Sets color for an unvisited link

a:visited {color:#FF0000;} Sets color for a visited link

a:hover {color:#FF0000;}

a:active{color:#ff0000:} Sets color for the selected link

-

Term 25

Examples of List Styles

Definition 25

list-style-image:url("image.gif:); Sets list items marker to an image

list-style-type: Sets the item marker type