19 lines
319 B
HTML
19 lines
319 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Palindrome Tester</title>
|
|
<meta charset="utf-8">
|
|
<script src="bundle.js"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Palindrome Tester</h1>
|
|
|
|
<button id="palindromeTester">Test palindrome</button>
|
|
|
|
<h2>Result</h2>
|
|
|
|
<p id="palindromeResult"></p>
|
|
|
|
</body>
|
|
</html>
|