Skip to content

Commit ca20370

Browse files
authored
Create palindrome.html
1 parent e24c93f commit ca20370

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

Palindrome_Checker/palindrome.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<link href="style.css" rel="stylesheet">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta charset="utf-8"/>
7+
<title>Palindrome Checker</title>
8+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
9+
<script src="script.js" type="text/javascript" charset="utf-8"></script>
10+
</head>
11+
<body>
12+
<div class="container">
13+
<div class="Form">
14+
15+
<h1>PALINDROME CHECKER</h1>
16+
<br>
17+
<p style="color:white;font-family: cursive;"> A palindrome is a word or sentence that's spelled the same way both forward and backward, ignoring
18+
punctuation, case, and spacing.</p>
19+
<br>
20+
<input type="text" class="inputbox" oninput="palindrome()" placeholder="Enter a word and a string to check....">
21+
<p class="list"></p>
22+
</div>
23+
</div>
24+
<div style="margin-top: 40px">
25+
<div class="made-with">
26+
<h4 class="color" style="color:white;font-family: cursive;">Made with ❤️ by <a href="https://github.com/AdishiSood" style="color:white;font-family: cursive;">Adishi Sood</a></h4>
27+
</div>
28+
<div style="color:white;margin-top:15px; font-family: cursive;">Connect with me:</div>
29+
<br>
30+
<div class="social-icons">
31+
<a href="https://github.com/AdishiSood" target="_blank">
32+
<i class="fa fa-github" style="font-size:30px; color:white"></i>
33+
</a>
34+
<a href="https://twitter.com/Adishi11" target="_blank">
35+
<i class="fa fa-twitter" style="font-size:30px; color:white"></i>
36+
</a>
37+
<a href="https://www.linkedin.com/in/adishisood/" target="_blank">
38+
<i class="fa fa-linkedin" style="font-size:30px; color:white"></i>
39+
</a>
40+
</div>
41+
</div>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)