Zdravím, nejak mi nefungují barvy u těch položek barva q,w a e.
<html lang="cs-cz">
<head>
<meta charset="utf-8" />
<title>Jazyk HTML</title>
<link rel="stylesheet" rel="nofollow" href="styl.css" type="text/css" />
</head>
<body>
<h1>Jazyk HTML</h1>
<p>q.</p>
<h2>Editor</h2>
<p>q.</p>
<h3>PSPad</h3>
<p>q.</p>
<h2>HTML stránka</h2>
<p>q.</p>
<h3>Tagy</h3>
<p>q.</p>
<h4>Doctype</h4>
<p>q.</p>
<h4>HTML</h4>
<p>q.</p>
<p.barvaq> text"Barva A"</p.barvaq>
<p.barvaw> text"Barva B"</p.barvaw>
<p.barvae> text"Barva C"</p.barvae>
<p class="barvaq">Barva Q</p>
<p class="barvaw">Barva W</p>
<p class="barvae">Barva E</p>
</body>
</html>
Pro úplnost přidávám ten .css soubor.
body {
font-family: Verdana;
font-size: 15px;
}
h1, h2, h3, h4, h5, h6 {
color: 8DEF0F;
font-weight: normal;
font-family: Arial;
}
h1 {
font-size: 2.5em;
text-align: center
}
h2 {
.barvaq
{
background: #530156;
color: white;
}
.barvaw
{
background: #0009FE;
}
.barvae
{
background: #02FBFD;
}
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.35em;
}
h5 {
font-size: 1.25em;
}
h6 {
font-size: 1.15em;
}