Sunday, 1 March 2020

WT-8


Q1. Write a java script program to accept a string and character from user and check the count of occurrences of that character in string   .                                                                                                 

<html>
<body>
<script>
function displayCount() {
setTimeout(function() {
var str = document.getElementById('str1').value;
var letter = document.getElementById('letter1').value;
letter = letter[letter.length-1];
var lCount;
for (var i = lCount = 0; i < str.length; lCount += (str[i++] == letter));
document.querySelector('p').innerText = lCount;
return lCount;
}, 50);
}
 </script>
Enter String: <input type="text" id="str1"><br><br>
Enter Letter: <input onkeypress="displayCount()" type="text" id="letter1"><br><br>
<button onclick="displayCount()">Click for Result</button><br><br>
result= <p></p>
</body>
</html>


Q2.Create HTML page with following specifications Title should be about your self.
i)color the background should be pink.
ii)Place your name at the top of page in large text and centered.
iii)Add names of your family members each in different size, color, style and font.
iv)Add scrolling text about your family.
v)Add any image at the bottom. (Use internal CSS to format the web page)