mirror of
https://github.com/olehomelchenko/minivlat-local-ua.git
synced 2025-12-21 21:22:24 +00:00
30 lines
991 B
HTML
30 lines
991 B
HTML
<!DOCTYPE html>
|
|
<html lang="uk">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Результати тесту</title>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1 id="results-header"></h1>
|
|
<div class="results">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Питання</th>
|
|
<th>Тип діаграми</th>
|
|
<th>Коректність</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="results-table-body">
|
|
<!-- Dynamic content will be inserted here -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<button onclick="window.location.href='index.html'">Повернутися на головну</button>
|
|
</div>
|
|
<script src="js/results.js"></script>
|
|
</body>
|
|
</html> |