

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create a big font text using JavaScript?
To create a big font text, use the JavaScript big() method. This method causes a string to be displayed in a big font as if it were in a BIG tag.
Example
You can try to run the following code to create a big font text −
<html> <head> <title>JavaScript String big() Method</title> </head> <body> <script> var str = new String("Demo Text"); document.write("Following is bigger text: "+str.big()); </script> </body> </html>
- Related Questions & Answers
- How to create a small font text using JavaScript?
- How to change the font color of a text using JavaScript?
- How to change the font size of a text using JavaScript?
- How to create a bold text using JavaScript?
- How to create a strikethrough text using JavaScript?
- How to create a blink text using JavaScript?
- How to create a link from a text using JavaScript?
- How to set the font size of text with JavaScript?
- How to set the font family for text with JavaScript?
- How to create a text field using JavaFX?
- How to change text font in HTML?
- How to set a particular font for a button text in Android using Kotlin?
- How to make a text italic using JavaScript?
- How to increase the font size of a Text widget?
- How do we include big text in HTML?
Advertisements