a1/index.html

22 lines
594 B
HTML
Raw Permalink Normal View History

2024-05-15 08:27:15 +00:00
<!DOCTYPE html>
<html lang="pl">
<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>
<body>
<h1>Sortowanie Sufiksów</h1>
<input type="text" id="slowo" placeholder="Podaj słowo">
<button onclick="sortujSufiksy()">Sortuj Sufiksy</button>
<h2>Nieposortowane Sufiksy</h2>
<pre id="nieposortowane"></pre>
<h2>Posortowane Sufiksy</h2>
<pre id="posortowane"></pre>
2024-05-17 07:40:03 +00:00
<script src="js.js"></script>
2024-05-15 08:27:15 +00:00
</body>
</html>