2017-02-11 1 views
-3

enter image description hereenter image description hereIch möchte folgende Tabelle machen

[1]: https://i.stack.imgur.com/PbDnR.png 

ich nicht versucht haben, aber es wird Tags und auch Tabelle verwenden. Ich bin ein Noob, also brauche ich Hilfe hier.

+1

okk ich versuche, wieder –

Antwort

0
<!DOCTYPE html> 
<html> 
<head> 
<link rel="stylesheet" type="text/css" href="style.css"> 
    <title></title> 
</head> 
<body> 
<hr/> 
<table class="finaltable" border="2"> 
    <tr> 
     <td>final</td> 
     <td>hii</td> 
     <td>hii</td> 
     <tr></tr> 
     <tr> 
    </tr> 
</table> 
<table class="finaltable2" border="2"> 
    <tr> 
     <td>final</td> 
     <td>hii</td> 
     <td>hii</td> 
     <td>hii</td> 
    </tr> 
    <tr> 
     <td>final</td> 
     <td>hii</td> 
     <td>hii</td> 
     <td>hii</td> 
    </tr> 
</table> 
</body> 
</html> 
+1

netter Versuch sonu ku – varunkumar

+1

Nur 'td' und' th' Tags innerhalb eines 'tr' gehen kann: https : //www.w3.org/TR/html5/tabular-data.html#the-tr-element – BSMP

+1

gut gemacht du brauchst mehr übung weiter so – varunkumar

1

Ich wünsche Ihnen nützlich finden wird:

<!DOCTYPE html> 
<html> 
<head> 
<title>table demo</title> 
<style> 
    table, th, td { 
    border: 1px solid black; 
    border-collapse: collapse; 
} 
</style> 
</head> 
<body> 
    <table> 
    <tr align="center"> 
    <th>Name</th> 
    <th>Telephone</th> 
    <th>e-mail</th> 
    <th>City</th> 
    </tr> 
    </table> 
<hr> 
    <table> 
    <tr align="center"> 
    <th>Name</th> 
    <th>Telephone</th> 
    <th>e-mail</th> 
    <th>City</th> 
    </tr> 
    <tr> 
    <td>5</td> 
    <td>6</td> 
    <td>7</td> 
    <td>8</td> 
    </tr> 

</table> 
</div> 
</body> 
</html> 
Verwandte Themen