-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (107 loc) · 3.98 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="shortcut icon" type="image/jpg" href="./assets/icons/compare_arrows_black_24dp.svg"/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<!-- Web page CSS -->
<link rel="stylesheet" href="assets/css/styles.css" />
<title>Palindrome Checker</title>
<!-- Web page script -->
<script src="assets/js/app.js"></script>
</head>
<body>
<div class="container">
<h1>Palindrome Checker</h1>
<h5>Unveiling the Symmetry of Words and Phrases! 🔄✨</h5>
<blockquote
class="custom-blockquote"
cite="https://www.merriam-webster.com/dictionary/palindrome"
>
<p class="quote-content">
<span class="quote-term">palindrome</span>
<span class="quote-definition">[pal-in-drohm]</span>
<span class="quote-pronunciation">noun</span> <br />a word, verse, or
sentence (such as <strong>Able was I ere I saw Elba</strong>) or a
number (such as <strong>1881</strong>) that reads the same backward or
forward
</p>
<footer class="quote-source">Merriam Webster Dictionary</footer>
</blockquote>
<p>
Enter any word or sentence, and watch as we reveal whether it's a
palindrome.
</p>
<div class="row justify-content-center">
<form
class="justify-content-center"
id="palindrome-form"
style="text-align: center"
>
<div class="col">
<div class="form-group">
<input
type="text"
class="form-control"
id="word-input"
placeholder="Enter a word"
required
autofocus
aria-label="Word input"
/>
</div>
<div class="form-group">
<button type="button" id="check-button" aria-label="Check">
Check
</button>
</div>
</div>
</form>
</div>
<div id="result"></div>
</div>
<footer class="footer">
<div class="container text-center">
<p>
Made with <span style="color: #e25555">♥</span> by
<a href="mailto:medamor.9@gmail.com">Mohamed Amor</a>
<?xml version="1.0" encoding="UTF-8"?>
<a href="https://github.com/purplegem903" target=”_blank”>
<svg
width="24px"
height="24px"
stroke-width="1.5"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
color="#000000"
>
<path
d="M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
<path
d="M14.333 19v-1.863c.025-.31-.018-.62-.126-.913a2.18 2.18 0 00-.5-.781c2.093-.227 4.293-1 4.293-4.544 0-.906-.358-1.778-1-2.434a3.211 3.211 0 00-.06-2.448s-.787-.227-2.607.961a9.152 9.152 0 00-4.666 0c-1.82-1.188-2.607-.96-2.607-.96A3.211 3.211 0 007 8.464a3.482 3.482 0 00-1 2.453c0 3.519 2.2 4.291 4.293 4.544a2.18 2.18 0 00-.496.773 2.134 2.134 0 00-.13.902V19M9.667 17.702c-2 .631-3.667 0-4.667-1.948"
stroke="#000000"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
></path>
</svg>
</a>
</p>
</div>
</footer>
</body>
</html>