Skip to content

Instantly share code, notes, and snippets.

@emreedemir
Created March 10, 2020 13:46
Show Gist options
  • Save emreedemir/6112d6faefe2d0b7be4079aa7ac89ce8 to your computer and use it in GitHub Desktop.
Save emreedemir/6112d6faefe2d0b7be4079aa7ac89ce8 to your computer and use it in GitHub Desktop.
Table creation rowspan and colspan
<html>
<head>
<title>Emre Edemir</title>
</head>
<body>
<p>rowspan satırları bişrleiştirir colspan kolonları birleştirir
<table border="1px">
<tr>
<th rowspan="6"> Persons of Deparmenmt</th>
<th colspan="2">Name and Surname</th>
<th>NOt</th>
<th>Department</th>
</tr>
<tr>
<td colspan ="2">Emre SC</td>
<td>CC</td>
<td rowspan="7">Software Development</td>
<tr>
<tr>
<td colspan ="2">Emre DS</td>
<td>AA</td>
<tr>
<tr>
<td colspan ="2">Emre AS</td>
<td>BB</td>
<tr>
</table>
</body>
<html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment