Created
August 29, 2024 09:09
-
-
Save kianurivzzz/8c21697ec05c644ff3ba3b0fe69c1f39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ru"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="css/style.css"> | |
<title>Матч за звание чемпиона мира по шахматам 2016</title> | |
</head> | |
<body> | |
<table> | |
<thead> | |
<tr> | |
<th>Сотрудник</th> | |
<th>Зарплата</th> | |
<th>Бонусы</th> | |
<th>Менеджер</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Алексей Примадонин</td> | |
<td>750$</td> | |
<td>63$</td> | |
<td rowspan='2'>Менеджер менеджеров</td> | |
</tr> | |
<tr> | |
<td>Вениамин Редакторович</td> | |
<td>1200$</td> | |
<td>0</td> | |
</tr> | |
<tr> | |
<td>Джедай Падаванов</td> | |
<td>500$</td> | |
<td>100$</td> | |
<td>Королева Верстальщиков</td> | |
</tr> | |
<tr> | |
<td></td> | |
<td></td> | |
<td></td> | |
<td colspan='4'>Всего: 2613$</td> | |
</tr> | |
</tbody> | |
</table> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
font: 18px/1.5 sans-serif; | |
} | |
table { | |
color: #fff; | |
background-color: #343a40; | |
} | |
td, | |
th { | |
padding: 1em; | |
} | |
th { | |
text-align: left; | |
vertical-align: bottom; | |
} | |
tbody tr { | |
background-color: #2e3338; | |
} | |
.text-right { | |
text-align: right; | |
} | |
.text-bold { | |
font-weight: bold; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment