To add a text bigger than the normal text, use the <big> tag.
Note − This tag is not supported in HTML5.
Example
You can try to run the following code to include big text in HTML −
<!DOCTYPE html> <html> <head> <title>HTML big Tag</title> </head> <body> <p>Questions and Answers: <big>Qries.com</big></p> </body> </html>