Font-Variant

This example demonstrates how to set the variant of a font:

HTML file: Displayed by browser:
<style>
p.normal {
    font-variant: normal;
}
p.small {
    font-variant: small-caps;
}
</style>
<body>
<p class="normal">My name is Мерилін Івонн.</p>
<p class="small">My name is Мерилін Івонн.</p>
</body>

My name is Мерилін Івонн.

My name is Мерилін Івонн.


Back button Table of Contents Next button