Mendez chap 13,14,19 Flashcards

1
Q
A

tag used for a table: holds many more tags within it for each line, cell, heading,etc.

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

table tag for each row is?

A

table row

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

table tag for the heading?

A

name here

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

tag used to add content to each row within the table and what is it nested under?

A

nested under table row for each cell we use content of this cell

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

table tag for each row is?

A

table row

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

table tag for the heading?

A

name here

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

tag used to add content to each row within the table and what is it nested under?

A

nested under table row for each cell we use content of this cell

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

what is spanning?

A

merging two or more table cells together either vertically or horizontally to create more space.

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

colspan used?

A

used to make extra large cells horizontally; a value must be added to the colspan to represent each cell. ex: cell data

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

Rowspan used?

A

used to make vertical cells larger (occupies 2 vertical cells or more). must have a # value with the Rowspan to select how many rows to use.
ex: rowspan=/2/>data here

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

what is the GET method of sending forum information to server?

A

the entered in info to the fields is added to the url as a (key/value pair) so that pg’s can be saved with fields filled such as a search bar.

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

what is the Post method in sending forum info to server and why is it used?

A

data is sent in background from browser to server in the header of communications. sends private info like passwords.

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

Autofocus:?

A

when filling out a forum and the cursor is already in a text box indicating where to start.

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

what will the following code do and identify it:

A

*the placeholder=”Your 1st Name” prints the text in “ “ inside the text box to indicate what one needs to type here.
the autofocus name=”name” />
tells the cursor to start off in this 1st box.
**
this code will display a single box with cursor inside it stating in text: your 1st name. this is an example of a forum

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

forum validation?

A

when a forum is coded with html 5 it can have code that will check entered data for errors without checking with the server and reloading the page. example: will make sure email entered is in proper format.

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

what symbol is used to assign values to a property in CSS?

A

the : colon sign is used to assign values to a property in CSS

17
Q

how does a selector work in CSS?

A

selector followed by { brackets contain items that rules apply to}
*Example:
selector UL {line-height: colon used to apply this rule to height ; semicolon used like a comma for next set of properties with rules then }

18
Q

can selectors work with existing html tags or only with new creations of ID, element, etc.?

A

yes, selectors can work with both existing html tags and new CSS id’s, element name etc..

19
Q

what is an internal style sheet?

A

when CSS rules are placed in the header of an html document. (external use is used more often)

20
Q

what are: attributes in elements?

A

classes are given rules then called: attributes in elements.

21
Q

how is a class defined in CSS?

A

the class is followed by a period .

22
Q

what does this code do when it is in the head of a html doc?

ul {list-style-type: none;}

A

this set the following rule for all UL UN-ordered lists on the page.
rule: no rule so this mean not even bulletins are used. the ‘list-style-type’ is a descriptor or property of what the rule is (rule: none).

23
Q

what is an internal style sheet?

A

when CSS rules are placed in the header of an html document.