<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
   <title>Tabellen, 1. &Uuml;bung - HTML - Workshop Internet-Pr&auml;senz</title>

   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

   <meta name="description"
      content="&Uuml;bung Tabellen: Border und Ausrichtung.">
   <meta name="keywords" content="HTML, Tabellen">
   <meta name="Author" content="Roland Unger">
</head>

<body>

<h1>Internet-Workshop: Tabellen, 1. &Uuml;bung</h1>

<h2>Standard-Tabelle ohne Attribute</h2>

<table summary="Einfache Tabelle ohne Auszeichnung">
<tr>
   <td>Erste Zelle</td>
   <td>Zweite Zelle</td>
</tr>
<tr>
   <td>Dritte Zelle</td>
   <td>Vierte Zelle</td>
</tr>
</table>

<h2>Standard-Tabelle mit Rand (border=&quot;5&quot;)</h2>

<table summary="Tabelle mit Rand" border="5">
<tr>
   <td>Erste Zelle</td>
   <td>Zweite Zelle</td>
</tr>
<tr>
   <td>Dritte Zelle</td>
   <td>Vierte Zelle</td>
</tr>
</table>

<h2>Standard-Tabelle mit Ausrichtung (align, valign)</h2>

<table summary="Tabelle mit Ausrichtung" border="5">
<tr>
   <td width="100">Erste Zelle</td>
   <td width="200">Zweite Zelle<br>zweite Zelle</td>
   <td width="100" valign="bottom" align="left">Zweite Zelle</td>
</tr>
<tr>
   <td width="100">Dritte Zelle</td>
   <td width="200">Vierte Zelle<br>vierte Zelle</td>
   <td width="100" valign="top" align="right">Vierte Zelle</td>
</tr>
<tr>
   <td width="100">Dritte Zelle</td>
   <td width="200">Vierte Zelle<br>vierte Zelle</td>
   <td width="100" valign="middle" align="center">Vierte Zelle</td>
</tr>
</table>

</body>
</html>