Hey Leute, bin neu auf dem Gebiet und wollte mir mal eine Tabelle in html basteln, um sie in meine Signatur in einem anderen Forum einzufügen. Ich bräuchte Hilfe im Design, und vllt wäre es ja möglich, das die Tabelle ein wenig "Wackelt"
Hier mal der Code:
Hier mal der Code:
Code:
<!DOCTYPE html>
<html>
<body>
<style type="text/css">
h6 {
font-style:italic;
font-family:"Courier New";
font-size:10pt;
font-weight:bold;
color:#008080;
letter-spacing:0.1em;
}
</style>
<h6>
<table cellpadding="5" border="4">
<tr>
<td> Name </td>
<td> Rasse </td>
<td> Reich </td>
<td> Level </td>
<td> Gilde </td>
</tr>
<tr>
<td> CyanPunch </td>
<td> KörperKrieger </td>
<td> [color=gelb]Gelb![/color] </td>
<td> Noch 23 </td>
<td> None </td>
</tr>
</table>
</h6>
</body>