斜体(font-style)
<html>
<head>
<title>斜体</title>
<style type="text/css">
<!--
.c1 {
font-style: italic;
}
.c2 {
font-style: oblique;
}
//-->
</style>
</head>
<body>
<div class="c1">斜体</div>
<br>
<div class="c2">斜体</div>
</body>
</html>
〔 実行する 〕