-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 1.16 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>FCC | Palindrome Checker</title>
<meta
name="description"
content="Palindrome Checker FCC Certification Project"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<h1>Is it a Palindrome?</h1>
<div class="input-wrap">
<h2>Enter in a text to check for a palindrome:</h2>
<input type="text" id="text-input"/>
<button type="button" id="check-btn">Check</button>
<div id="result"></div>
</div>
<div class="description">
A palindrome is a word or sentence that's spelled the same way
both forward and backward, ignoring punctuation, case, and
spacing. <br>
Examples: eye, racecar etc.
</div>
</div>
<script src="script.js" async defer></script>
</body>
</html>