-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 874 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./index.css" />
<title>Anagram Checker | A program to check Anagram</title>
</head>
<body>
<form id="js-form" class="anagram-checker">
<div class="anagram-checker__title">Anagram Checker</div>
<div class="anagram-checker__input">
<input type="text" id="js-str1" placeholder="Give 1st String" />
</div>
<div class="anagram-checker__input">
<input type="text" id="js-str2" placeholder="Give 2nd String" />
</div>
<button type="submit" class="anagram-checker__button">Check</button>
<div id="js-output" class="anagram-checker__output"></div>
</form>
<script type="module" src="./index.js"></script>
</body>
</html>