-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (24 loc) · 949 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>회문 탐지기 Palindrome Checker</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>회문 탐지기 (Palindrome Checker)</h1>
<div class="container">
<p class="rules">회문 예시 (palindrome examples): "토마토", "abba", "ac가나가ca"</p>
<p class="rules">회문이 아닌 예시 (examples that are not palidromes): "djowijasp", "ㅓ애ㅑㅓㅈㄷㅇ", "가나다라"</p>
<p class="rules">자음/모음만 있는 한글 입력값, 특수문자는 무시하고 처리합니다</p>
</div>
<div id="container">
<input id="text-input" placeholder = "Text here">
<button id="check-btn">Check</button>
</div>
<div id="result"></div>
<button id="light-dark">Dark Mode</button>
<script src="index.js"></script>
</body>
</html>