Home >Web Front-end >HTML Tutorial >How to use html big tag
html The big tag is used to make larger text, presenting a large font effect. When the browser displays the text contained between the tag and its corresponding tag, its font size is larger than the surrounding text. The text should be one size larger.
#html What does the big tag mean? How to use html big tag?
Function: Make larger text and present large font effect.
Note:
Using the tag makes it easy to enlarge the font size. It couldn't be simpler: browsers display the text contained between the tag and its corresponding tag as one size larger than the surrounding text.
However, if the text is already in the largest font size, the tag will have no effect. Even better, you can nest tags to make the text larger. Each tag makes the font one size larger, up to the upper limit of size 7 text, as defined by the font model.
But you still have to be careful when using the tag, because browsers are always very lenient in trying to understand various tags. For those browsers that do not support the tag, it This is often thought of as a boldface label.
Note:
All browsers support the tag.
html big tag example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <span>这是<big>放大的字体</big></span> </body> </html>
Effect:
The above is the detailed content of How to use html big tag. For more information, please follow other related articles on the PHP Chinese website!