Web Design Flashcards

0
Q

The open and close tags for a table are?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

Every HTML document must begin and end with these tags?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The open and close paragraph are?

A

<p>
</p>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The open and close tags for the section of the HTML document where the main body of the page will be displayed are?

A

Ff

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The open and close tags to display the name or title of the page of the tab in the browser such as Internet explore or chrome are?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The open and close tags for the table column are?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The open and close tags for the table row are?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The tags to make horizontal line on a web page is?

A

<hr></hr>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The tags to break and move to the next line if the web page is?

A

<br></br>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Write the code for the open tag of a table that would set the background color of the table red?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Write the open tag that set the background color of the web page to blue?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Write the open tag of the first tag that would appear in an HTML document?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Write the open and close to create an order list?

A

<ol>
</ol>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Write the open and close tags to create an un-ordered list?

A

<ul>
</ul>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Write the open and close tags for an item contained in a list?

A

<li>
</li>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Using the open and close Heading level tags, write the code that would display “King” in the largest font?

A

<h1>
</h1>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Write the code on one line that would display King High School on three separate lines using Heading level 3 and breaks?

A

<h3>King<br></br>High<br></br>school
</h3>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Which open and close tags contain the CSS coding?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

Which open and close tags contain the JavaScript code?

A
19
Q

Which open and close tags contain the script tags?

A

{}

20
Q

Match the hexadecimal value to it’s closest color? #000000

A

Black

21
Q

Match the hexadecimal value to it’s closest color? #FFFFFF

A

White

22
Q

Match the hexadecimal value to it’s closest color? #FF0000

A

Red

23
Q

Match the hexadecimal value to it’s closest color? #00FF00

A

Green

24
Q

Match the hexadecimal value to it’s closest color? #0000FF

A

Blue

25
Q

Match the hexadecimal value to it’s closest color? #888888

A

Gray

26
Q

Write the CSS declaration to make an element’s text color red?

A

color: red;

27
Q

Write the CSS declaration to center the text in an element?

A

text-align: family;

28
Q

Write the CSS declaration to change an element’s font to Verdana?

A

font-family: Verdana;

29
Q

Write the CSS declaration to change an element’s font to Times New Roman?

A

font-family: “Times New Roman”;

30
Q

Write the CSS declaration to change an element’s font size to 18 points?

A

font-size: 18px;

31
Q

Write the CSS declaration to change an element’s font to bold?

A

font-weight: bold;

32
Q

Write the CSS declaration to change an element’s background color to lime?

A

background-color: lime;

33
Q

Write the CSS declaration to make an element’s border 5 pixels thick, solid, and blue?

A

border: 5px solid blue;

34
Q

Write the CSS declaration that will set an element’s left edge 5 pixels to the right of the left edge of its containing element?

A

Left: 5px;

35
Q

Write the CSS declaration that will allow an element to be positioned at an absolute location?

A

position: absolute;

36
Q

Write the CSS declaration that will set the element’s right edge 5 pixels to the left of the right edge of it’s containing elements?

A

right: 5px;

37
Q

Write the CSS declaration that will locate an element 100 pixels from the top edge of it’s containing element?

A

top: 100px;

38
Q

Write the CSS declaration that will set the width of an element to 50 pixels?

A

width: 50px;

39
Q

Write the open and close symbols to encapsulate the CSS declaration(s) for an element?

A

{}

40
Q

In a single line, write the CSS declaration that will set an element’s location on a web page to: x=75, y=50?

A

left: 75px; top: 50px;

41
Q

What symbol is used at the beginning of a hexadecimal number to insure that the alphanumeric characters are treated as a hexadecimal number?

A

#

42
Q

How many digits are their in a hexadecimal number that represents a color in CSS or HTML

A

6

43
Q

Using the hexadecimal value for black, write the CSS declaration that will set an element’s background color to black?

A

background-color: #000000;

44
Q

Write the CSS declaration that will assign the image “logo.gif” to an element’s background?

A

background-image: url(“logo.gif”);