Вы многому научились за пару коротки уроков. Это нас очень
впечатлило! Давайте быстро пройдемся по пройденному материалу, чтобы убедиться,
что вы действительно все усвоили.
задание
подсказка
решение index.html
решение stylesheet.css
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title>Result</title>
</head>
<body>
<h1>Change me to Verdana.</h1>
<h3>Change me to Courier.</h3>
<p>Make me purple!</p>
</body>
</html>
h1{
font-family: Verdana;
}
h3{
font-family: Courier;
}
p{
color:purple;
}
/* вроде все как надо :)*/
/*p {
color:red;
}*/
h3 {
font-family:Verdana;
color:blue;
}
p {
font-family:Garamond;
font-size:16px;
}
/*You can do this! Write your CSS below.*/
h3{
color:red;
}
p{
font-family:Courier;
}
span{
background-color:yellow;
}
p{
color:green;
font-family:Garamond;
font-size:24px;
}
p{
color:green;
}
<!DOCTYPE html>
<html>
<head>
<title>Result</title>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body>
<p>I want to be SIZE 44 font!</p>
</body>
</html>