How To Use String Object Big In JavaScript
In this article I am going to explain about String Object Big In JavaScript.
Use big() method in JavaScript
If we want to display a string in a big font then we can use a big() method.
The <big> tag is used to return a string in JavaScript, like this:
<big>string</big>.
All browsers support string object big() method.
Syntax
Example
<!DOCTYPE html>
<html>
<body Style="background-color:red">
<p id="demo">Click here this Button</p>
<button onclick="myFunction()">Try it</button>
<script type="text/javascript">
function myFunction()
{
var txt = "Big:Hello World";
document.getElementById("demo").innerHTML = txt;
}
</script>
</body>
</html>
|
Output1

Output2

Further Readings
You may also want to read these related articles :here
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here