HTML CSS BootStrap Flashcards
Match the following Bootstrap column class names to their corresponding screen size. xs lg sm md mobile desktop tablets laptops
Match the following Bootstrap column class names to their corresponding screen size.
xs - mobile
lg - desktop
sm - tablets
md - laptop
Match the correct CSS property / value pair to the correct definition.
visibility: hidden;
disply: none;
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 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. target=”_blank”
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
d. div
HTML5 requires tag names to be: Select one: A. Lowercase B. Doesn't matter C. Uppercase D. Camel case
B. Doesn’t matter
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
c. required
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. GET has no body; POST has a body
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
D. Parent Child
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
C. Top Right Bottom Left
In CSS, which of these is an ID selector: Select one: A. # (Hash/Pound) B. Element Name C. . (Period) D. Tagname
A. # (Hash/Pound)
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
b. Inline and Block
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
b. Linking
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
B. :checkbox
C. :before
D. :active
E. :mouseout
Attribute values in HTML case sensitive.
Select one:
True
False
True
Using (a) tag it is possible to create anything into a link to another page.
Select one:
True
False
True