28 lines
669 B
HTML
28 lines
669 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>
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
</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>
|
|
<div class="pre" id="nieposortowane"></div>
|
|
<h2>Posortowane Sufiksy</h2>
|
|
<div class="pre" id="posortowane"></div>
|
|
<script src="fetch.js"></script>
|
|
|
|
<li id="lista">
|
|
<ol></ol>
|
|
</li>
|
|
|
|
</body>
|
|
|
|
</html> |