HTML CSS BootStrap Flashcards

1
Q
Match the following Bootstrap column class names to their corresponding screen size.
xs lg sm md
mobile
desktop
tablets
laptops
A

Match the following Bootstrap column class names to their corresponding screen size.

xs - mobile
lg - desktop
sm - tablets
md - laptop

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

Match the correct CSS property / value pair to the correct definition.

visibility: hidden;
disply: none;

A

The correct answer is: visibility: hidden; – Hides the element by making it invisible only. The space that the element would normally take up is left on the page., disply: none; – Completely hides the element from the page why making it invisible and taking the space where the element would normally show off the page.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
How can you force a link to open the linked page in a new tab/window?
Select one:
A. target="_blank"
B. location="_blank"
C. target="_new"
D. location="_new"
A

A. target=”_blank”

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

Which of the following is not an element that was added in the standards of HTML 5.

Select one:

a. header
b. nav
c. section
d. div

A

d. div

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q
HTML5 requires tag names to be:
Select one:
A. Lowercase
B. Doesn't matter 
C. Uppercase
D. Camel case
A

B. Doesn’t matter

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

What attribute can we use to require an HTML 5 input field to be filled out before the form can be submitted?

Select one:

a. validate
b. invalid
c. required
d. pattern

A

c. required

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

HTTP GET vs POST, select the correct answer.
Select one:
A. GET has no body; POST has a body
B. GET can only get data, only POST can submit data
C. POST has no body, GET has a body
D. POST is secure, GET is unsecure for transmitting sensitive information

A

A. GET has no body; POST has a body

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
In CSS, what kind of a selector is this: A > B
Select one:
A. Ancestor Descendent
B. Element and Sibling
C. Element Parent 
D. Parent Child
A

D. Parent Child

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
In CSS, what order is the border/padding/margin applied to each side?
Select one:
A. Top Bottom Left Right
B. Left Right Top Bottom
C. Top Right Bottom Left 
D. Left Top Right Bottom
A

C. Top Right Bottom Left

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q
In CSS, which of these is an ID selector:
Select one:
A. # (Hash/Pound)
B. Element Name
C. . (Period)
D. Tagname
A

A. # (Hash/Pound)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
Which of the following are the two categories of HTML for how they will be displayed?
Select one:
a. Internal and Block
b. Inline and Block 
c. Static and Internal
d. Inline and Stacked
A

b. Inline and Block

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

Which of the following is not a methodology of including CSS into an HTML document?

Select one:

a. External
b. Linking
c. Inline
d. Internal

A

b. Linking

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
Which of the following is not a CSS Pseudo Class?
Select one or more:
A. :after
B. :checkbox
C. :before
D. :active
E. :mouseout 
F. :link
A

B. :checkbox
C. :before
D. :active
E. :mouseout

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

Attribute values in HTML case sensitive.
Select one:
True
False

A

True

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

Using (a) tag it is possible to create anything into a link to another page.

Select one:
True
False

A

True

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