Border ____ specifies the distance between the borders of adjacent cells in a table.
Front
spacing
Back
The ____ table property specifies whether or not table cells should have their own border, or share a common border.
Front
border-collapse
Back
The ____ value of the box-shadow property sets the size of the shadow.
Front
spread
Back
The ____ attribute of the <td> or <th> tag sets the number of rows spanned by a cell.
Front
rowspan
Back
HTML table tag:
Front
<table></table> indicates start and end of table
<tr></tr> indicate the start and end of table row
<th></th> indicates the start/end of table heading (heading cell).. bold and center aligned text
<td></td>indicates start/finish of data cell in a table.. normal left aligned text style
Back
The ____ attribute of the <td> or <th> tag sets the number of columns spanned by a cell.
Front
colspan
Back
rowspan attribute of the <th> or <td>
Front
sets the number of rows spanned by a cell, can also use colspan attribute, which controls span of columns
Back
____ allow you to organize information on a Web page using HTML tags.
Front
tables
Back
inline style sheets
Front
used to change style of an individual HTML tag
Back
row
Front
horizontal line of info
Back
In an HTML table, a ____ is the intersection of a row and a column.
Front
cell
Back
Research suggests the best location on a Web page to place navigation bars and lists is on the ____ of a Web page.
Front
A: top
B: side
C: bottom
D: any of the above ***
Back
Before writing any HTML code, you should ____
Front
sketch the table on paper
Back
column
Front
vertical line of info
Back
padding?
Front
is shorthand to set top, right, bottom, and left padding around an element
in other word, padding gives more space around the content within that cells
Back
Adding an external style sheet to a Web page involves a two-step process of creating an external style sheet and ____
Front
linking the style sheet to the desired Web pages
Back
remember: external style sheets(aka linked)
Front
most comprehensive type of style sheet and can be used to control the consistence/look or MANY web page within a website.
Back
data cell
Front
displays normal text that is left-aligned
Back
Each Web page in a multipage Web site should have a link back to the ____ of the Web site.
Front
home page
Back
Conceptualizing a table on paper first saves time when you try to determine which HTML table ____ to use to create the table.
Front
tags
Back
table-layout
Front
sets layout algorithm to be used for a table
Back
The HTML tags ____ indicate the start and end of a table row.
Front
<tr> </tr>
Back
A ____ is descriptive text located above or below the table that describes the purpose of the table.
Front
table caption
Back
____ are the most efficient and powerful way to change styles for an entire Web site.
Front
External style sheets
Back
external style sheet aka? used for?
Front
(aka linked) used to define style for MULTIPLE pages in a web site
Back
tables
Front
allow you to organize information on a webpage using HTML tags; consists of rows, columns, and cells, like spread sheet
Back
All table tags are inserted between the ____ tags.
Front
<table> </table>
Back
Adding an external style sheet to a Web page involves a two-step process of creating an external style sheet and ____.
Front
linking the style sheet to the desired Web pages
Back
table should be used ____.
Front
A: if it will help organize information in such a way that it is easier to read
B: if a Web page needs to display a structured, organized list of information
C: if a Web page includes text and images that need to be positioned in a very specific way
^^all of above
Back
box-shadow property:
Front
h-shadow= position of horizontal shadow
v-shadow=position of vertical shadow
blur= blurs 0=none, higher=more blurred
spread- size of shadow
Back
You add table captions with which of the following tags?
Front
<caption> </caption>
Back
UTF-8 is?
Front
U from Universal Character Set + Transformation Format—8-bit) is a character encoding capable of encoding all possible characters (called code points) in Unicode. The encoding is variable-length and uses 8-bit code units.
Back
table caption
Front
is descriptive text located above or below table that further describes the purpose of the table
Back
In an HTML table, you can set attributes for ____.
Front
A: an entire row of information
B: a single cell
C: one or more cells within a row
^^ all
Back
five main elements of webpage:
Front
body, paragraph, links, images, and tables
Back
The ____ table property specifies the placement of a table caption.
Front
caption-side
Back
border-collapose
Front
specifies if table borders should be collapsed(have their own border) or share common border
Back
table header
Front
same as heading cell---it is any well with bold, center text the indicates the purpose of row/column
Back
table border
Front
line that enclosed the perimeter of a table
Back
border-spacing
Front
specifies distance between borders of adjacent cells
Back
border spacing?
Front
specifies the distance between the border of adjacent cells in a table
Back
Steps in creating tables for a Web page include ____.
Front
A: determining if a table is needed
B: planning the table
C: coding the table
D: all of the above **
Back
empty-cells
Front
specifies wheather or not to display borders/background on empty cells in table
Back
caption-side
Front
specifies the placement of a table caption
Back
heading cell (aka table header)
Front
displays text as bold and center- aligned
Back
After creating and saving an external style sheet file, you use the ____ tag to link the external style sheet to any Web pages to which you want to apply the style.
Front
<link />
Back
embedded aka (?) style sheet
Front
(aka internal) is inserted between the <head> and </head> tags of a single web page within the style container <style> </style>;
used to change the style for elements on an ENTIRE webpage
Back
example of table html code:
Front
<table>
<th>derp</th>
<th>derpy</th>
<tr>
<td> whats under derp </td>
<td> whats under derpy </td>
</tr>
</table>
Back
cell
Front
intersection of a row and column
Back
Captions are appropriate for tables used to ____
Front
structure columns and rows of information
Back
Section 2
(27 cards)
You can change the style of ____ into which a style sheet is linked by just changing the external style sheet.
Front
all web pages
Back
Classes are named with a ____ after the element is defined.
Front
period
Back
A ____ is any cell with bold, centered text that indicates the purpose of the row or column.
Front
table header
Back
If the v-shadow value of the box-shadow property is negative, the shadow will be ____ the box.
Front
above
Back
Using a border gives the image a ____ appearance, making the image appear to have a frame around it.
Front
3-D
Back
An external style sheet is a text file that contains the ____ for the styles you want to apply across the Web site.
Front
selectors and declarations
Back
You can use the ____ property to give an image a shadow.
Front
box-shadow
Back
Which of the following are main HTML tags used to create a table?
Front
<tr></tr>...this indicates state/finish of table row
<th></th>... this indicates state/finish of table heading
<td></td>... this indicates state/finish of data cell
Back
You can determine the height and width of an image by opening the image in ____.
Front
an image-editing program
Back
The ____ table property specifies the distance between the borders of adjacent cells.
Front
border-spacing
Back
The colspan attribute can be used with the ____ tag.
Front
<td> ....this indicates state of data cell
Back
By default, a ____ displays text as bold and center-aligned.
Front
heading cell
Back
In an HTML table, a ____ is a horizontal line of information.
Front
row
Back
A table should be used ____.
Front
A: if it will help organize information in such a way that it is easier to read
B: if a Web page needs to display a structured, organized list of information
C: if a Web page includes text and images that need to be positioned in a very specific way
D: all of the above**
Back
If no additional spacing or padding styles are used, the size of each data cell ____.
Front
is automatically set to the minimum size needed for the text inserted into the data cell
Back
If a sketch of a table is made before the table is coded, it is easier to see ____.
Front
A: how many rows and columns to create
B: if the table will include headings
C: if any of the headings span rows or columns
D: all of the above **
Back
To create an external style sheet, enter all style statements in a text file and then save the file with a ____ extension.
Front
.css
Back
The HTML tags ____ indicate the start and end of a table heading (heading cell).
Front
<th> </th>
Back
Captions are appropriate for tables used to ____.
Front
structure columns and rows of information
Back
An external style sheet sometimes is called a ____ style sheet.
Front
linked
Back
By default, a ____ displays normal text that is left-aligned.
Front
data cell
Back
In an HTML table, a ____ is a vertical line of information.
Front
column
Back
The HTML tags ____ indicate the start and end of a table.
Front
<table></table>
Back
By default, captions are aligned at the ____ of a table.
Front
top (above)
Back
The HTML tags ____ indicate the start and end of a data cell in a table.
Front
<td> </td>
Back
Which of the following is a good way to organize your code?
Front
indenting
Back
Providing a(n) ____ gives a visitor ready access to important links..