-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalindrome.html
28 lines (28 loc) · 1.42 KB
/
palindrome.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Palindrome Checker</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- <link href="New_Website.css/index.New_Website.css" rel="stylesheet">-->
</head>
<body>
<h1>CHECK TO SEE IF A WORD IS A PALINDROME!</h1>
<h3>A palindrome is a word that is spelled the same forward and backwards. Enter a word below and test it out.</h3>
<form>
<label for="word">Enter a word:</label>
<input type="text" id="word" name="word" required>
<button type="button" onclick="checkPalindrome()">Check</button>
<script src="js/checkPalindrome.js"></script>
<script src="https://kit.fontawesome.com/68715d24c0.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ="
crossorigin="anonymous">
</script>
<!--<script>document.getElementById("age").innerHTML = calculateAge(new Date())</script>-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>