フォントスタイルを指定する

font-style: 斜体
text-decoration:
装飾

斜体    normai ・ italic ・ oblique
装飾    none ・ underline ・ overline ・ line-through ・blink

font-style プロパティは、フォントを斜体にするかどうかを、
text-decorationプロパティはフォントの装飾を指定します。
ここで言う「italic」とは、通常の文字よりも続け書きに近い草書体風に
デザインされた斜体のフォントを指します。
「oblique」とは、標準のフォントを単純に斜めにしたものです。
一般的な環境では「italic」も「oblique」も同じ様に斜体で表示されます。
「underline」「overline」「line-through」は、それぞれ文字に対して
「下線」「上線」「取り消し線」を付け、「blink」は文字を点滅させます。
これらの値は、半角スペースで区切って複数同時に指定することも出来ます。
斜体を標準に戻す為には、font-styleプロパティに「normal」を、
装飾を無くす為には、text-decorationプロパティに「none」を指定します。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>CSS覚書</title>
<style type="text/css">
<!--

p {
font-size: x-large;
font-family: "Times New Roman",Times,serif
}
#itlc { font-style: italic }
#oblq { font-style: oblique }
#udln { text-decoration: underline }
#lnth { text-decoration: line-through }
#ovln { text-decoration: overline }
#udov { text-decoration: underline overline }
.keywd {
color: #ff3300;
background=color: #ffffff
}
-->
</style>

</herd>
<body>
<h1>フォントスタイルを指定する</h1>
<p>
font-style: <span class="keywd">normal</span>
</p>
<p id="itlc">
font-style: <span class="keywd">italic</span>
</p>
<p id="oblq">
font-style: <span class="keywd">oblique</span>
</p>
<p>
text-decoration: <span class="keywd">none</span>
</p>
<p id="udln">
text-decoration: <span class="keywd">underline</span>
</p>
<p id="lnth">
text-decoration: <span class="keywd">line-through</span>
</p>
<p id="ovln">
text-decoration: <span class="keywd">overline</span>
</p>
<p id="udov">
text-decoration: <span class="keywd">underline overline</span>
</p>

</body>
</html>