Guten tag
Ich hab ein Typiches anfängerproblem
meine seite ist mittels css erstellt
nun soll in eine zeile vorne fett und gross und hinten klein und nicht boldgeschrieben werden
<p><h2>Duo Simet (Ungarn) <h3> Hochseil-Artistik </h3></h2></p>
so geht das nicht
ich such nach einer lösung damit ich die css style datei verwenden kann
inhalt der style
#contenttext h1 {
font-size: 24px;
font-weight: bold;
margin-bottom: 5px;
text-align: center;
}
#contenttext h2 {
font-size: 14px;
font-weight: bold;
margin-bottom: 0px;
text-align: center;
}
#contenttext h3 {
font-size: 10px;
font-weight: normal;
margin-bottom: 5px;
text-align: center;
}
#contenttext p {
margin-top: 2px;
line-height: 8px;
}