• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/42

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

42 Cards in this Set

  • Front
  • Back
This Contains only text , which is evently spaced on the web page to create rows and columns. Uses only standard word processing characters cell borders and lines must be created using text characters such as hyphens or equal signs.
text table
Rendered using only graphical elements to distinguish the table components. You can control the size of the individual table cells and align text within those cells. This will even allow you to create rows or colunms.
graphical table
Each Character takes up the same amount of space in each row.
Fixed width font
or

nomospace font
Assigns a difference amount of space for each character
Proportional fonts
Retains the extra white space and causes the text to appear in the web page as it appears in the HTML code.
Preformatted text
What is the code for preformatted text?
<pre>content</pre>
How do you code a <table> structure?
<table>
<tr>
<td> first cell</td>
<td> Second cell</td
</tr>
</table>
What 3 types of row groups does html support?
*table header

*table body

*table footer
How do you create a table caption?
<caption style=font-weight : bold">Whatever</caption>
What are two kinds of tables you can place in a web page ?
* text tables

* Graphical tables
What is the difference between a proportional font and fixed -width font ? Which should you use in a text table and why?
A porportional font assigns a different amount of space to each character width. A fixed -width font assigns the same space.
Define the purpose of the following tag in definine the structure of a table

<tr> .... </tr>
The <tr> tag identifies a row.individaul table cells,
Which HTML tag would you use to create preformatted text?
The <pre> tag
How do you specify the numbers of rows in a graphical Table?
The number of rows is determined by the number of <tr> tags.
How would you specify the number of columns.
The number of colunms is equal to the largest number of <td> and <th> tags in a single row.
What are three row groups and how do you create them?
The three Row groups are:

*table body<tbody>

*table tag<th>

*table foot <tfoot>
What HTML code would be used to place the caption "product catalog" below a table? Where must the code be placed compared to the open table.
<caption align="bottom"> Product Catalog</caption>

This caption must be placed in
directly after the opening tag.
What is an example of adding a table border?
<table border="10"bordercolor="blue">
What frame attribute determines which side of a table will have borders?
<table frame="type"> ...</table>
The amount between table cells.
Cell spacing
Setting the text between the cell text and the cell border.
Cell Padding
What is the default pixels value for cell padding
1
What is the syntax for setting the table width?
<table width="value"> ... </table>
How do you set the height of a table?
<table height="value">...</table>
How do you merge several cells into one
You create a spanning cell
How do you define a column group?
<colgroup span="value" />
What attributes would you use to create a table with a 5 pixel wide outside border , a 3 pixel wide space between table cells and 4 pixels of padding between the cell content
<table border="5" cellspacing="3" cellpadding="4"> ...</table>
What attributes would you use to vertically align a cell 's contents with the top of the cell?
<td valign="top"> ...</td>
What attributes would you add to center the contents of a table cell?
<td align="center">...</td>
What HTNL code would you use to size the table to half the width of the browser window area , regardless of the resolution of the userr's monitor?
<table width="50%">
Under what conditions will a table cell exceed the size specified by the width attribute?
When the contents of the table do not fit with the cell dimensions or when another cell in the same column has been set to larger width.
When attribute creates a cell the spans three row and columns?
<td rowspan="3" colspan="2">...</th>
What HTML code would you enter to create a column group spanning 3 columns that sets the background color of the column yellow.
<colgroup span="3" style="background-color: yellow" />
What is a columnar layout? Can text flow from one color or another in such a layout?
A layout were it has been laid out in columns. Text cannot flow from one column to another
What is a jigsaw layout? What cell spacing value should you use in this layout?
layout that breaks the page into pieces. Cell spacing should be set to 0
What is a fixed-width layout?
This layout sets the absolute size of the page elements, regardless of the size of the browser window.
What is a fluid layout?
A layout that has one or more of the table elements is sized as a percentage of the page width. The effect of this layout is to set the sizes of the page elements based on the size of the browser window
This browser often renders the content of a table in the order in which the content appears in html code. If the content is not intelligible when reproduced in that order , the table will be difficult to intrepret.
Why can table be difficult for aural (non-visual) browsers?
A cell that spans multiple rows or columns
Spanning cell
How do you create a spanning cell?
colspan="value

Example
<td rowspan="2"colspan="2">...</td>
What controls the space between the columns?
Gutter
How would you write code for a "gutter"?
<MULTICOL COLS=3 GUTTER=150>