0
は私のHTMLです:フォントが色を変えないのはなぜですか?ここ
h1 {
font-family: "Trebuchet MS", Helvetica, sans-serif;
font-size: 2em;
font-style: italic;
}
h2 {
font-family: Geneva, Arial, serif;
font-size: 1.5em;
}
p {
font-family: Georgia, “Times New Roman”, Times, serif;
font-size: 1.5em;
}
p.important {
font-size: 2.5em;
font-weight: 900;
}
.typewriter {
font-family: "Courier New", Courier, monospace;
}
.emphasized {
font-style: italic;
}
.standout {
color: #cc0000;
}
<h1>Jen</h1>
<h2>That’s my name</h2>
<p class=“important”>This is a bunch of text</p>
<h2 class="typewriter">This heading is in a typewriter text.</h2>
<p class="typewriter">This paragraph is also in typewriter text.</p>
<p>This is <span class="emphasized">italicized text</span> for learning purposes.</p>
<p>This is going to be <span class=“standout”> red colored text</span> for learning purposes.</p>
私は問題があると私は私が考えることができるすべてのものを試したかを把握するように見えることはできません...
どれでもすべての助けが大変に感謝しています。私はウェブデザインを初めて勉強しています。私は自分自身で学ぶために最善を尽くしています....しかし、私はこのためにいくつかの助けが必要です。
あなたはこれに追加するには、 'クラス=「傑出した」' – Turnip