23 lines
435 B
HTML
23 lines
435 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>
|
|
|
|
<form id="palindromeTester">
|
|
<textarea name="phrase" rows="10" cols="30"></textarea>
|
|
<br>
|
|
<button type="submit">Is it a palindrome?</button>
|
|
</form>
|
|
|
|
<h2>Result</h2>
|
|
|
|
<p id="palindromeResult"></p>
|
|
|
|
</body>
|
|
</html>
|