Write a script that should produce some statistical information on user entered
input data. The javascript code should be in an external file called "statistics.js",
an HTML file named "textStats.html" should be created which will contain only
a div element with id "statsOut". Javascript should ask user to enter textual
data until he/she enters "". You should check for numeric data and ignore that
data. Final statistic should be displayed in the div tag of the HTML file.
A) You have to use the external CSS file called "stats.CSS" to set border, font,
margin, etc. for the div tag.
B) The JavaScript file (statistics.js) should keep prompting the user for input
until he/she enters " " (space). Numerical values and empty input should be
handled gracefully and should be ignored. The script should print number
of vowels present in the input text entered by the user.
C) If a user enters 10 consecutive entries without entering a string, the script
should print "You have exceeded invalid entry limit."