a1/index.html

27 lines
603 B
HTML
Raw Normal View History

2024-05-15 08:27:15 +00:00
<!DOCTYPE html>
<html lang="pl">
2024-05-20 05:14:55 +00:00
2024-05-15 08:27:15 +00:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sortowanie Sufiksów</title>
2024-05-17 07:40:03 +00:00
<link rel="stylesheet" href="styles.css">
2024-05-15 08:27:15 +00:00
</head>
2024-05-20 05:14:55 +00:00
2024-05-15 08:27:15 +00:00
<body>
<h1>Sortowanie Sufiksów</h1>
2024-05-20 05:14:55 +00:00
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
2024-05-15 08:27:15 +00:00
<h2>Nieposortowane Sufiksy</h2>
2024-05-20 09:38:56 +00:00
<div class="pre" id="nieposortowane"></div>
<h2>Posortowane Sufiksy</h2>
<div class="pre" id="posortowane"></div>
2024-05-20 05:14:55 +00:00
<script src="fetch.js"></script>
2024-05-15 08:27:15 +00:00
2024-05-20 08:32:10 +00:00
<li id="lista">
2024-05-21 08:05:17 +00:00
<ol></ol>
2024-05-20 08:32:10 +00:00
</li>
2024-05-15 08:27:15 +00:00
</body>
</html>