Mendez chap 13,14,19 Flashcards
(23 cards)
tag used for a table: holds many more tags within it for each line, cell, heading,etc.
table tag for each row is?
table row
table tag for the heading?
name here
tag used to add content to each row within the table and what is it nested under?
nested under table row for each cell we use content of this cell
table tag for each row is?
table row
table tag for the heading?
name here
tag used to add content to each row within the table and what is it nested under?
nested under table row for each cell we use content of this cell
what is spanning?
merging two or more table cells together either vertically or horizontally to create more space.
colspan used?
used to make extra large cells horizontally; a value must be added to the colspan to represent each cell. ex: cell data
Rowspan used?
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
what is the GET method of sending forum information to server?
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.
what is the Post method in sending forum info to server and why is it used?
data is sent in background from browser to server in the header of communications. sends private info like passwords.
Autofocus:?
when filling out a forum and the cursor is already in a text box indicating where to start.
what will the following code do and identify it:
*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
forum validation?
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.
what symbol is used to assign values to a property in CSS?
the : colon sign is used to assign values to a property in CSS
how does a selector work in CSS?
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 }
can selectors work with existing html tags or only with new creations of ID, element, etc.?
yes, selectors can work with both existing html tags and new CSS id’s, element name etc..
what is an internal style sheet?
when CSS rules are placed in the header of an html document. (external use is used more often)
what are: attributes in elements?
classes are given rules then called: attributes in elements.
how is a class defined in CSS?
the class is followed by a period .
what does this code do when it is in the head of a html doc?
ul {list-style-type: none;}
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).
what is an internal style sheet?
when CSS rules are placed in the header of an html document.