
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How do we include big text in HTML?
The <big> HTML makes the enclosed content shown with a font size that is one level bigger than the text (medium becomes large, for example). The size is limited to the largest font size supported by the browser.
Syntax
<big> Contents... </big>
Following are the examples…
Example
In the following example we are using <big> html to make our text bigger.
<!DOCTYPE html> <html> <body> <h1>Tutorialspoint</h1> <p>welcome to tutorials</p> <big>the best e-way learning</big> </body> </html>
Output
When the script is executed, the text "the best e-way learning" increases in size as we apply <big> to the text.
Example:( Using css style)
In the following example we are using the css style with the <big> tag to make our text colourful and big.
<!DOCTYPE html> <html> <body> <h1>TUTORIALSPOINT</h1> <p>Welcome to tutorials</p> <big style="font-size:40px; font-weight:bold; color:green; "> The best e-way learning </big> </body> </html>
Output
At the time of execution, the <big style> gets triggered and applies to the text and makes its size increase.
Note − This feature is removed from the relevant web standards and is no longer compatible with few web browsers. If there is a need to alter the font size, please use font_size feature.
- Related Articles
- How do we include an emphasized text in HTML?
- How do we include the direction of text display in HTML?
- How do we include an anchor in HTML?
- How do we include a table caption in HTML?
- How do we include a section in an HTML document?
- How do we include an inline sub window in HTML?
- How do we include attributes for table columns in HTML?
- Include keyboard text in HTML
- How do we create underlined text in HTML?
- How do we create preformatted text in HTML?
- How do we add bold text in HTML?
- How do we set text font in HTML?
- How do we display inserted text in HTML?
- How do we display a text area in HTML?
- How do we include the legal number intervals for an input field in HTML?
