HTML & CSS Flashcards

1
Q

The collapse proprety only works with which tags?

A

Tr, Tbody, Col, Colgroup

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

Define usage of <Action></Action>

A

The action takes us to the next page or script after submission

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

Why is “id” used for bookmark

A

To identify a unique spot so the computer won’t bring the user to somewhere else

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

Define <details></details>

A

It specifies details that user can open and close on demand

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

Define <summary>

A

A visible heading for the <detail> element</detail>

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

Define “inital-scale=1.0”

A

inital scale defines how zoomed in the website is when someone first click on it, so 1.0 is the standard or the normal zoom.

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

Element.style.visibility = “hidden”;

A

True

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

.showelement{ visibility: show; }

A

False

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

What is an encoding type?

A

Characters or letters like moarse code, english

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

Define Th colspan attribute

A

The colspan attribute defines number of columns a header cell can span. (horizontally)

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

Define <source></source>

A

The <source></source> HTML Tag supports src attribute.

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

Define <src></src>

A

The src attribute provides the media file’s URL.

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

Define “track” in tags

A

It lets you specify timed text tracks (or time-based data), for example to automatically handle subtitles. WebVTT format ( . vtt files)

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

Define grid-template-columns

A

specifies the number (and the widths) of columns in a grid layout.

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

Define CSS framework

A

a prepped and ready-to-use CSS library (Cascading Style Sheets)

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

Define usage of “script”

A

The “script” tag is used to embed a client-side script (JavaScript). The “script” element either contains scripting statements, or it points to an external script file through the src attribute. Like form validation, image manipulation

17
Q

Define “vw” “vh”

A

vh stands for viewport height and vw for viewport width

18
Q

Define static positioning

A

Elements with position: static are positioned based on the normal flow of the page. They are not affected by the top, right, bottom, or left properties

19
Q

Define “Tab index”

A

When a tabindex attribute is used on a web page, the object becomes an element that can be focused with the keyboard which makes it accessible.