HTML <big> Tag

HTML5 does not support.

<big> The tag was used in HTML 4 to define larger text.

What to replace with?

Example 1

Specify different font sizes for HTML elements (using CSS):

<html>
<head>
<style>
p.ex1 {
  font-size: 30px;
}
p.ex2 {
  font-size: 50px;
}
</style>
</head>
<body>
<p>This is a normal paragraph.</p>
<p class="ex1">This is a larger paragraph.</p>
<p class="ex2">This is a paragraph larger than the previous one.</p>
</body>
</html>

Try it yourself

In our CSS tutorial, you can find information about CSS font size for more information.