-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (21 loc) · 859 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>String Palindrome Checker</title>
<meta name="description" content="Checks if a word is a palindrome.">
<meta name="author" content="Supritha">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="inputBox">
<h1>String Palindrome checker</h1><label>Enter a word</label><input type="text" name="" id="string"><br><label>String length</label><input type="text" name="" id="stringLength" disabled><br><label>Palindrome ?</label><input type="text" name="" id="stringPal" disabled><br><button id="btn">Go</button>
</div>
<!--inputBox-->
</div>
<!--container-->
<script src="script.js"></script>
</body>
</html>