フォントを斜体にしたい
font-styleプロパティは、フォント斜体を指定します。
値:normal、italic、oblique
HTMLソース
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>フォントスタイルを指定する</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 }
.keywd {
color: #ff3300;
background-color: #ffffff
}
-->
</style>
</head>
<body>
<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>
</body>
</html>