HTML and CSS Reference
In-Depth Information
6.
Since the structure of rows is identical, the table row containing the five data cells can be
copied three times with a simple copy and paste:
<table>
<tr>
<th></th><th></th><th></th><th></th><th></th>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td>
</tr>
<tr>
<td></td><td></td><td></td><td></td><td></td>
</tr>
</table>
7.
Finally, the cells should be filled with data:
<table>
<tr>
<th>Model</th><th>iPhone</th><th>iPhone 3G</th><th>iPhone 3GS</th><th>iPhone 4</th>
</tr>
<tr>
<td>Preinstalled OS</td><td>iPhone OS 1.0</td><td>iPhone OS 2.0</td><td>iPhone
OS 3.0</td><td>iOS 4.0</td>
</tr>
<tr>
<td>Display resolution</td><td>480x320</td><td>480x320</td><td>480x320</td>
<td>960x640</td>
</tr>
<tr>
<td>CPU clockrate</td><td>620 MHz</td><td>620 MHz</td><td>833 MHz</td><td>1 GHz</td>
</tr>
<tr>
<td>Camera</td><td>2 MP</td><td>2 MP</td><td>3 MP</td><td>5 MP (rear),
0.3 MP (front)</td>
</tr>
</table>
Search WWH ::




Custom Search