<!DOCTYPE html>
<html>
<head>
<style>
p.normal {
font-variant: normal;
}
p.small {
font-variant: small-caps;
}
</style>
</head>
<body>
<h1>font-variantプロパティ</h1>
<p class="normal">私の名前はヘーゲ・レフスネスです。</p>
<p class="small">私の名前はヘーゲ・レフスネスです。</p>
</body>
</html>