-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpalindrome.html
43 lines (42 loc) · 1.77 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<link href="style.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8"/>
<title>Palindrome Checker</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="script.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<div class="container">
<div class="Form">
<h1>PALINDROME CHECKER</h1>
<br>
<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
punctuation, case, and spacing.</p>
<br>
<input type="text" class="inputbox" oninput="palindrome()" placeholder="Enter a word and a string to check....">
<p class="list"></p>
</div>
</div>
<div style="margin-top: 40px">
<div class="made-with">
<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>
</div>
<div style="color:white;margin-top:15px; font-family: cursive;">Connect with me:</div>
<br>
<div class="social-icons">
<a href="https://github.com/AdishiSood" target="_blank">
<i class="fa fa-github" style="font-size:30px; color:white"></i>
</a>
<a href="https://twitter.com/Adishi11" target="_blank">
<i class="fa fa-twitter" style="font-size:30px; color:white"></i>
</a>
<a href="https://www.linkedin.com/in/adishisood/" target="_blank">
<i class="fa fa-linkedin" style="font-size:30px; color:white"></i>
</a>
</div>
</div>
</body>
</html>