work started

This commit is contained in:
2022-10-31 18:15:14 +03:00
parent cfa90d8765
commit 0994b32a0a
5 changed files with 170 additions and 0 deletions

39
index.html Normal file
View File

@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type='text/css' href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>PROGULASU</title>
</head>
<body>
<header>
<h1 class="h1header"> Пропущенные дежурства АСУ </h1>
</header>
<div class="container">
<h1>Количество и даты пропущенных дежурств УВП кафедры АСУ </h1>
</div>
<div class="container">
<table class="table">
<thead>
<tr>
<th>ФИО</th>
<th>Кол-во дежурств</th>
<th>Даты</th>
</tr>
</thead>
<tbody>
<tr>
<td>Сальный А.Г.</td>
<td>0</td>
<td></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>