TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

HTML big Tag

HTML big Tag with html tutorial, tags, anchor, img, div, entity, textarea, marquee, p tag, heading tag, h1, h2, table, formatting, attribute, elements, ol, ul, Input Types, block element tag, inline element tag, html tags, phrase tag, head, body, form, lists, symbols etc.

<< Back to HTML

HTML <big> tag (Not supported in HTML5)

HTML <big> tag was used to increase the text font size one level bigger than the document's base font size or surrounding text size, such as small to medium, medium to large, etc.

NOTE: HTML <big> tag is no longer supported by HTML5, so you can use CSS to increase the font size.

Syntax

<big>Content... </big>

Following are some specifications about the <big> tag

Display Inline
Start tag/End tag Both start and End tag
Usage Fonts and Web Typography

Example

 <!DOCTYPE html>
 <html>
 <head>
   <title>Big tag</title>
 </head>
 <body>
   <h2>Example of HTML big tag</h2>
    <p style="color:#ff4040">This is paragraph with normal font size</p>
    <p style="color:#00bfff">
        <big>This is paragraph with font size greater than the previous content</big>
    </p>
  </body>
</html>
Test it Now

Output:

HTML big tag

Increasing Font-size using CSS property:

<!DOCTYPE html>
<html>
<head>
	<style>
	      .fsize{
		font-size: 18px;
		color: red;
		}
	</style>
</head>
<body>
	<h2>Example to change font size using CSS</h2>
	<p>The paragraph content with default font size</p>
	<p class="fsize">The paragraph content with CSS to increase font size</p>
</body>
</html>
Test it Now

Output:

HTML big tag

Attribute

Tag-specific Attribute:

The <big> element does not contain any specific attribute.

Global Attribute

The <big> element supports the Global Attribute in HTML.

Supporting Browsers

Elementchrome browser Chromeie browser IEfirefox browser Firefoxopera browser Operasafari browser Safari
<big>YesYesYesYesYes




Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf