DreamWeaver CS3でメールマガジン用のHTMLを作業してま
DreamWeaver CS3でメールマガジン用のHTMLを作業してます。
前任者が作ったベースで作業してるので、制御がさっぱりわかりません。
CS以前のゴーライブでの作業は普通に出来ます。
今、格好悪いなぁと思っているのは
フォントをさわるたびにStyleが増えてしまっているんです。もうすぐ100近い。
それがメールで一斉に配信されるのがやりきれません。
CSS?、スタイルシート?
できれば、タイトル、見出し、本文、色変え文字3パターンくらいに納めたいのです。
headのコピペを途中までですが下に貼ってみました。
教えて下さい。よろしくお願いします。
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<style type="text/css">
body {
font-size: 0.9em;
}
font {
font-size: inherit;
font-weight: normal;
font-style: normal;
line-height: normal;
text-decoration: none;
}
p {
font-weight: inherit;
font-style: inherit;
}
a, a:link, a:visited {
color: #f00;
text-decoration: none
}
a:hover, a:active {
color: #fff;
background-color: #f00;
text-decoration: none;
}
td {text-align:left;}
.bunsho { padding: 4px;text-align:left; }
.hard13txt { font-size: 13px; }
.hardstandardtxt { font-size: 15px; }
.hard12txt {
font-size: 12px;
}
.style17 {font-family: "MS Pゴシック", Osaka, "ヒラギノ角ゴ Pro W3"}
.style1 { font-family: "MS Pゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
font-size: small;
}
.style2 {font-size: small}
.style3 { font-family: "MS Pゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
font-weight: bold;
font-size: small;
}
.style4 { font-family: "MS Pゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
font-size: medium;
}
.style22 { color: #FF0000;
font-weight: bold;
}
.style24 { font-family: "MS Pゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
font-size: 12px;
font-weight: bold;
color: #FF0000;
}