Files
minivlat-local-ua/public/results.html
2025-01-22 12:25:18 +02:00

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>