Is het mogelijk om exact hetzelfde lettertype/dikte enz. te krijgen voor <h1>?
voorbeeld in CSS file:
.zelfde
{
color: #408080;
font-family: garamond, arial;
font-size: 14pt;
}
output HTML
<h1 class=zelfde>More Information</h1>
<h2 class=zelfde>More Information</h2>
<h3 class=zelfde>More Information</h3>
<h4 class=zelfde>More Information</h4>
<div class=zelfde>More Information</div>
Merk op dat alles gelijk is behalve de <div> regel.
voorbeeld in CSS file:
.zelfde
{
color: #408080;
font-family: garamond, arial;
font-size: 14pt;
}
output HTML
<h1 class=zelfde>More Information</h1>
<h2 class=zelfde>More Information</h2>
<h3 class=zelfde>More Information</h3>
<h4 class=zelfde>More Information</h4>
<div class=zelfde>More Information</div>
Merk op dat alles gelijk is behalve de <div> regel.