-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 1.33 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
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width,
initial-scale=1" />
<link href="style.css"
rel="stylesheet" />
</head>
<body>
<div class="root">
<h1>Count Anagrams</h1>
<div class="option">
<span>
<label for="inputString">
Input String:
</label>
<input id="inputString"
type="text"
value="forxxorfxdofr" />
</span>
<span>
<label for="inputWord">
Enter the word you wish to find anagram of:
</label>
<input id="inputWord"
type="text"
value="for" />
</span>
<span style="text-align: center; width: 50%">
<input style="text-align: center; width: 50%;"
type="button"
value="Submit"
onclick="fun()" />
</span>
</div>
<h3 id="nums"></h3>
<p id="explain"></p>
</div>
<script src="script.js"></script>
</body>
</html>