ISTM 210 Exam 3 HTML Questions

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

40 Terms

1
New cards

With HTML 5.0, there are __ header lines defined with __ being the largest.

6, 1

2
New cards

The default header alignment is centered

False, it is aligned to the left.

3
New cards

With HTML 5.0, there are __ font sizes defined with__ being the largest

7, 7

4
New cards

The default font size implemented in almost all browsers is __

3

5
New cards

Color, size, and face are properties of the tag

true

6
New cards

If is utilized, the color of text following is

blue

7
New cards

All tables must have at least __ row(s) and __ column(s)

1, 1 (they must have at least one table data element)

8
New cards

A table data element can be

just about anything can be found as a table data element

9
New cards

a table data element can be

just about anything including an image

10
New cards

table data element text, by default, is __ in each table cell

left-justified and centered vertically(middle)

11
New cards

a table cannot be embedded inside another table

false

12
New cards

unless explicitly specified in the tag, the height of a table row is automatically base on the height of the tallest element in that row.

true

13
New cards

cellpadding refers to the amount of space, in pixels, between individual cells in a table and, if not specified, has a default value of 2

false. cellpadding refers to the amount of space between the border of a cell and the contents of the cell, the default value is 1

14
New cards

cellspacing refers to the amount of space, in pixels, between the border of a cell and the contents of the cell and, if not specified, has a default value of 1

false. cellspacing refers to the amount of space between individual cells, the default value is 2

15
New cards

table column widths can be specified as percentages of the overall table width

true, the width property can also be set to fixed number of pixels.

16
New cards

unless explicitly specified, the width of a table column is automatically based on the width of the widest element in that column

true

17
New cards

by default, the background of a table is transparent.

true

18
New cards

the background of a table may be a solid color or an image

true

19
New cards


widths can be specified in either percentage of screen width or pixels

true. default is 100% screen width

20
New cards

By default, the height of a horizontal rule is ___ of screen width. This may be adjusted using the


tag's __ property

100%, width

21
New cards

By default, the alignment of a horizontal rule is ___

centered

22
New cards

You may not specify the color of a horizontal rule

false.

23
New cards

The tag is closed ___ the ___ tag.

before,

24
New cards

the

25
New cards

A pixel is approximately 1/72 inch

true, but variable based on screen resolution

26
New cards

an image's size can be adjusted using properties of the tag

true, height and width

27
New cards

an image's spacing can be adjusted using properties of the tag

true, hspace and vspace

28
New cards

image files are specified using the HREF property within the tag

false, SRC

29
New cards

an image's border color can be selected by using the bordercolor property of the tag

false, this is not a property of tag

30
New cards

unless specified by the link property of the page's tag, a linked image's initial border color is, by default, set by the browser.

true, and by default will be blue

31
New cards

an unlinked image's border color can be manipulated by the color property of a preceding tag

true, the color of a visible border around an unlinked image tag will be governed by browser default text color (black), text property of body tag, or color property of controlling font tag.

32
New cards

an image tag's align property has the same 3 properties as the horizontal rule tag.

false. The image tag's align property can have 1 of 5 values: top, middle, bottom, left, and right.

33
New cards

Linked documents and web pages are specified using the SRC property within the tag

false. HREF

34
New cards

within the document navigation is facilitated using the name property of the tag

true

35
New cards

ordered lists, unordered lists, menu lists and definition lists cannot be intermingled

false

36
New cards

type options for the

    are

square, disc(default), circle

37
New cards

colored images can be used as markers in an unordered list.

false. a true unordered list's markers are always black.

38
New cards

the

  • tag is found within the opening and closing __ tags
  • ordered list, unordered list, menu list

    39
    New cards

    the type property of the

      tag can have __ different values.

    5. default value is Arabic (numbers)

    40
    New cards

    The number of characters identifying the first element in an ordered list may be changed from 1, I, i, A or a

    true. no matter whether using a default ordered list, type=1, or any of the other type values, the value for the start property must be an integer.