Web Design Flashcards

(45 cards)

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?

19
Q

Which open and close tags contain the script tags?

20
Q

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

21
Q

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

22
Q

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

23
Q

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

24
Match the hexadecimal value to it's closest color? #0000FF
Blue
25
Match the hexadecimal value to it's closest color? #888888
Gray
26
Write the CSS declaration to make an element's text color red?
color: red;
27
Write the CSS declaration to center the text in an element?
text-align: family;
28
Write the CSS declaration to change an element's font to Verdana?
font-family: Verdana;
29
Write the CSS declaration to change an element's font to Times New Roman?
font-family: "Times New Roman";
30
Write the CSS declaration to change an element's font size to 18 points?
font-size: 18px;
31
Write the CSS declaration to change an element's font to bold?
font-weight: bold;
32
Write the CSS declaration to change an element's background color to lime?
background-color: lime;
33
Write the CSS declaration to make an element's border 5 pixels thick, solid, and blue?
border: 5px solid blue;
34
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?
Left: 5px;
35
Write the CSS declaration that will allow an element to be positioned at an absolute location?
position: absolute;
36
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?
right: 5px;
37
Write the CSS declaration that will locate an element 100 pixels from the top edge of it's containing element?
top: 100px;
38
Write the CSS declaration that will set the width of an element to 50 pixels?
width: 50px;
39
Write the open and close symbols to encapsulate the CSS declaration(s) for an element?
{}
40
In a single line, write the CSS declaration that will set an element's location on a web page to: x=75, y=50?
left: 75px; top: 50px;
41
What symbol is used at the beginning of a hexadecimal number to insure that the alphanumeric characters are treated as a hexadecimal number?
#
42
How many digits are their in a hexadecimal number that represents a color in CSS or HTML
6
43
Using the hexadecimal value for black, write the CSS declaration that will set an element's background color to black?
background-color: #000000;
44
Write the CSS declaration that will assign the image "logo.gif" to an element's background?
background-image: url("logo.gif");