word counter html code with java script -earn with chat gpt- free code -tools website
welcome to new post , in this post you will find a html code for word counter. You can add this code to your website and run your word counter tools in your website .
This code is free and you no need to pay for code now.
We will try to give you a new code for every day .
You can create your tool website and earn unlimited with google and google adsense.
You can create your free website with the google product name as Blogger.
You just open Blogger.com
create your account and write or paste this code in the html view of your blogger.
so the Code is given below you can copy and paste in your website .
lets start .
Word counter html code with java script just copy and start
<html>
<head>
<title>Word Counter</title>
<style>
#text-input {
width: 100%;
height: 150px;
resize: none;
}
</style>
</head>
<body>
<h1>Word Counter</h1>
<textarea id="text-input" placeholder="Type or paste your text here"></textarea>
<p>Word Count: <span id="word-count">0</span></p>
<script>
var textarea = document.getElementById('text-input');
var wordCount = document.getElementById('word-count');
textarea.addEventListener('input', function() {
var text = textarea.value;
var words = text.trim().split(/\s+/);
var numWords = words.length;
if (text === '') {
numWords = 0;
}
wordCount.textContent = numWords;
});
</script>
</body>
</html>
html code for , free html code, word counter html code , tool website
Word Counter
Word Count: 0
Comments
Post a Comment