トップページ スタイルシート フォント用雛形
文字色
●フォントカラーの指定 → サンプルを見る 
↓[color.css]

.color1 {
color: #009999;
background: #ffffff
}
.color2 {
color: #cccc00;
background: #ffffff
}
.color3 {
color: #ff9900;
background: #ffffff
}
書体
●書体の指定 → サンプルを見る
↓[font_type.css]

h1 { font-family: Impact, sans-serif }
p { font-size: x-large }
.min { font-family: "MS P明朝",平成明朝,serif }
.gth { font-family: "MS Pゴシック",Osaka,sans-serif }
.com { font-family: "Comic Sans MS",sans-serif }
フォントサイズ
●フォントサイズの指定 → サンプルを見る
↓[font_size.css]

.f01 { font-size: xx-small }
.f02 { font-size: x-small }
.f03 { font-size: small }
.f04 { font-size: medium }
.f05 { font-size: large }
.f06 { font-size: x-large }
.f07 { font-size: xx-large }
.f08 { font-size: 9pt }
.f09 { font-size: 12pt }
.f10 { font-size: 16pt }
.f11 { font-size: 80% }
.f12 { font-size: 120% }
.f13 { font-size: 150% }
em {
color: #ff0000;
background-color: #ffffff;
font-style: normal
}
スタイル
●フォントスタイルの指定 → サンプルを見る
↓[font_style.css]

p {
font-size: medium;
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 }
.key1 {
color: #00ced1;
background-color: #ffffff
}