-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (31 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Word Counter Analyzer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>Word Counter Analyzer</h2>
<textarea id="inputText" rows="12" placeholder="Enter text here"></textarea>
<div id="result"></div>
</div>
<div class="copyright-widget">
<button id="toggle-copyright-form">© Made with ❤ by 0xelsherif.</button>
<div class="copyright-form">
<ul>
<li><a href="https://github.com/0xelsherif/Word-Counter-Analyzer" target="_blank">Star me on GitHub Repo</a></li>
<li><a href="https://0xelsherif.medium.com/mastering-text-analysis-with-javascript-a-step-by-step-guide-f9914fb5b5f1" target="_blank">See Medium Publication</a></li>
<li><a href="https://twitter.com/0xelsherif" target="_blank">Follow me on Twitter</a></li>
<li><a href="https://github.com/0xelsherif/" target="_blank">Follow me on GitHub</a></li>
<li><a href="https://0xelsherif.medium.com/" target="_blank">Follow me on Medium</a></li>
<li><a href="https://www.linkedin.com/in/0xelsherif/" target="_blank">Connect me on LinkedIn</a></li>
</ul>
</div>
</div>
<script src="Word-Counter.js"></script>
<script src="footer.js"></script>
</body>
</html>