Mendez chap 13,14,19 Flashcards
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.