Open In App

HTML big Tag

Last Updated : 27 Nov, 2024
Summarize
Comments
Improve
Suggest changes
Like Article
Like
Share
Report
News Follow

The <big> tag in HTML was used to increase the font size of text by one level compared to the surrounding text.

  • However, it has been deprecated in HTML5. Instead, it’s advisable to use CSS for styling text sizes.
  • Instead, it’s advisable to use CSS for styling text sizes.
HTML
<!DOCTYPE html>
<html>

<body>
    <p>This is paragraph text</p>

    <big>This is big Tag text</big>
</body>

</html>

Syntax

<big> Text line </big>

Alternative of <big> Tag

HTML
<!DOCTYPE html>
<html>

<body>
    <p>This is normal paragraph text</p>
    <div style="font-size:40px; ">
        style font using css properties
    </div>
</body>

</html>

Related article: CSS Font Size

HTML <big> Tag-FAQs

Is the <big> tag still supported in HTML5?

No, the <big> tag is obsolete in HTML5 and is not recommended for use in modern web development.

What is the alternative to the <big> tag in HTML5?

The alternative is using CSS with the font-size property to control text size. For example: <span style=”font-size: larger;”>Text</span>.

Why was the <big> tag deprecated?

The <big> tag was deprecated due to the introduction of CSS, which offers more flexible and consistent control over text styling.

How did the <big> tag affect nested text elements?

The <big> tag could be nested to make text incrementally larger each time it was used, but this is now considered poor practice.

Can the <big> tag be replaced with heading tags like <h1> to <h6>?

For important content, use heading tags (<h1>, <h2>, etc.) instead of <big>, but for minor text size changes, use CSS.


Master JavaScript with our full online Javascript course from beginner to advanced ! From basics to advanced techniques, build interactive websites and earn a certification. Take the Three 90 Challenge—complete 90% in 90 days for a 90% refund. Start now and unlock your JavaScript potential!


Next Article

Similar Reads

Why <big> tag is not in HTML5 while <small> tag exists ?
The <big> tag was discontinued in HTML5 while <small> tag is still in handy because <small> tag is frequently used to represent small prints like footnotes, copyright notices, comments etc. Many alternatives for <big> tag are already available such as <h1>, <h2> and so on. In HTML5 instead of using <big>, y
2 min read
Which tag is used to represent progress of a task in HTML & how is it different from <meter> tag ?
In this article, we will see which tag is used to represent the progress of a task in HTML. To represent the progress of a task, we will use the <progress> tag. This tag is used to represent the progress of a task. It is also defined how much work is done and how much is left. Syntax: <progress attributes...> </progress> Attribute
2 min read
Is container tag same as the empty tag in HTML? If not, why ?
In this article, we will see the container tag & empty tag in HTML, along with knowing how they're different from each other. The Container tag is not the same as the empty tag & these are two different categories of tags used in HTML. Container tag: This tag contains 3 parts, namely, the opening tag, content that will be displayed in the b
5 min read
Explain the difference between head Tag and header Tag in HTML5 ?
The <head> element is a container for metadata and is placed between the <html> and <body> tags. The <header> is for the main content section's introductory elements, like headings or logos and it mainly focuses on what appears at the top of the webpage. <head> ElementThe <head> element is part of the HTML docume
1 min read
What is the difference between the <br> Tag and the <p> Tag ?
The <br> tag is used to insert a line break, creating a new line within text or content. It doesn't have a closing tag and is a self-closing tag. On the other hand, the <p> tag defines a paragraph, separating blocks of text. It has an opening <p> and a closing </p> tag, allowing for the structured organization of text into p
2 min read
Difference between <article> tag and <section> tag
Both the tags are semantics in HTML 5. In this article, we will discuss about the <article> and <section> tag. Both the <article> and <section> tags are represented similarly but used for some meaning, that meaning is for the browsers and the developers. Both tags can replace each other as there will be no changes to the out
4 min read
What purpose does a <script> tag serve inside of a <noscript> tag?
Usage of NoScript tag: The tag defines alternate content that will be displayed if the user has disabled script or browser does not support script.It can be used inside both <head> and <body> tag. Syntax:<noscript> Contents... </noscript> Example:HTML <html> <head> <title>wbr Tag</title> <style>
1 min read
HTML <html> Tag
HTML is a language full of diverse elements, and one such element is the <html> tag. This tag, standing for ‘HyperText Markup Language’, is used to define the root of an HTML or XHTML document. It serves as the main container for all other HTML elements, excluding the <!DOCTYPE> declaration.Understanding the <html> TagThe <html
3 min read
JavaScript String big() Method
The <big> tag in HTML is used to make the enclosed text appear slightly larger than the surrounding text. However, the <big> tag is not supported in HTML5, and its use is generally discouraged in favor of CSS for styling. Syntaxstring.big()Return Value: A string embedded within a <big> tag. Parameters: None Example 1: In the below
1 min read
How to Handle Big Repositories With Git?
Git is a free and open-source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git relies on the basis of distributed development of software where more than one developer may have access to the source code of a specific application and can modify changes to it that may be
3 min read
  翻译: