22 lines
553 B
HTML
22 lines
553 B
HTML
<!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>
|
|
</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>
|
|
<script src="js.js">
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html> |