HTML/CSS

0.0(0)
studied byStudied by 1 person
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/63

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.

64 Terms

1
New cards

CSS

Cascading Style Sheets

2
New cards

Style=

to apply styles locally, type _______ within an HTML tag.

3
New cards

property:value

the format to define properties in style format is

4
New cards

;

what symbol goes between each style definition?

5
New cards

<style></style>

internal style sheets must go between which tags

6
New cards

<head>

which tag comes after <html> if creating an internal style sheet?

7
New cards

<head>

Which tag does the <title> tag fall between?

8
New cards

{


Which symbol follows the name of the tag when creating style sheets?

9
New cards

tags

H1 and P are examples of what?

10
New cards

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4 Transitional//EN">

what is the full intro tag to an HTML document?

11
New cards

<!-- -->

what are the comment tags

12
New cards

H1 {color:red}

to apply the text color red to H1 using styles...

13
New cards

P {color:yellow;text-align:right}

to apply the text color yellow and align right to P using styles...

14
New cards

A:link {color:red}

to make an untouched link red

15
New cards

A:visited {color:blue}

to make a visited link blue

16
New cards

A:hover {color:green}

to make a link green when moused over

17
New cards

A:active {color:yellow}

to make a link yellow when clicked

18
New cards

tag for adding an image or video

19
New cards

P {text-indent:8pt}

to indent the text in P by 8 pts

20
New cards

H1 {font: 10pt "Arial","Times"}

to change the font of H1 to 10pt Arial with a backup Times font

21
New cards

H1 {background:green;color:yellow}

to change the background color of H1 to green and the text to yellow

22
New cards

P {letter-spacing:.5em}

to change kerning of P to .5em

23
New cards

-

a two worded property is separated by what symbol

24
New cards

P {font-weight:bold}

to change the text on P to bold

25
New cards

,

you can define properties for several tags at once by seperating each tag with which symbol

26
New cards

text only format

to save an external style sheet, save it in what format?

27
New cards

.css

to save an external style sheet, save it with what extension?

28
New cards

what is the tag used to import an external style sheet, named styles.css, to an HTML document

29
New cards

P.intro

to assign a class called intro to tag P

30
New cards

to apply the class H1.heading to a paragraph

31
New cards

P#intro

to assign an ID called inro to tag P

32
New cards

to apply the ID H1#heading to a paragraph

33
New cards

DIV

a special tag that allows you to change the style of a section of the document

34
New cards

SPAN

a special tag that allows you to change the style of a few words of the document

35
New cards

DIV.love {background:red}

to set a DIV called love to have a red backgroud

36
New cards

to apply a DIV called love, which TAGS should be used?

37
New cards

SPAN.caps {font-variant:small-caps}

to set a SPAN called caps to have all capital letters

38
New cards

to apply a SPAN called caps, which TAGS should be used?

39
New cards

P {font-family:"verdana"}

to change the font family of P to Verdana

40
New cards

P {font-style:italic}

to change the font style of P to italic

41
New cards

700

what number represents bold weight

42
New cards

400

what number represents book weight

43
New cards

P {font-size:12pt}

to change the font size of P to 12pt

44
New cards

P {line-height:15pt}

to change the leading between text lines of P by 15pt

45
New cards

H1 {background:url("pic.gif")}

to apply a background to H1 named pic.gif

46
New cards

fixed

to keep the background from moving use the word...

47
New cards

scroll

to allow the background to move when moving down the page, use the word...

48
New cards

repeat

which word tiles an image horizontally and vertically

49
New cards

repeat-x

which word tiles an image horizontally

50
New cards

repeat-y

which word tiles an image vertically

51
New cards

no-repeat

which words keep the image from being tiled

52
New cards

word-spacing

which property specifies tracking

53
New cards

letter-spacing

which property specifies kerning

54
New cards

H1 {white-space:pre}

to set white space for H1

55
New cards

P {text-decoration:underline}

to underline text for P

56
New cards

P {text-decoration:line-through}

to strike thru text for P

57
New cards

P {text-transform:uppercase}

to change the text of P to uppercase

58
New cards

P {text-transform:capitalize}

to make the first letter of each word for P uppercase

59
New cards

IMG.off {position:relative;top:40;right:40}

to position an image relative to its natural position for 40% top and right

60
New cards

STYLE="z-index:-1"

if 2 images are overlaping which property can be used to decide which goes on bottom

61
New cards

tag defining the beginning of the first row of a table

62
New cards

tag defining the header cell in a row

63
New cards

tag defining regular cell in a row

64
New cards

tags that define a table