HTML <big> -tag


Niet ondersteund in HTML5.

De <big>tag werd in HTML 4 gebruikt om grotere tekst te definiëren.


Wat te gebruiken in plaats daarvan?

Voorbeeld

Specificeer verschillende lettergroottes voor HTML-elementen (met 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 bigger paragraph.</p>
<p class="ex2">This is a much bigger paragraph.</p>

</body>
</html>

In onze CSS tutorial vind je meer informatie over CSS Font Size .