<html>
<head>
<title> Mi primera página con CSS </tittle>
<STYLE TYPE="text/css">
.adv {
font-family: arial;
font-style: italic;
color: blue;
background-image: url("butterfly.gif");
background-repeat: no-repeat;,
border-width: 5px;
border-style: dashed;
}
</style>
</head>
<body>
<p class=adv>lalalala</p>
</body>
</html>
background-repeat: no-repeat;,
background-repeat: no-repeat;
<p class=adv>lalalala</p>
<p class="adv">lalalala</p>
<html>
<head>
<title> Mi primera página con CSS </tittle>
<STYLE TYPE="text/css">
.adv {
font-family: arial;
font-style: italic;
color: blue;
background-image: url("butterfly.gif");
background-repeat: no-repeat;
border-width: 5px;
border-style: dashed;
}
</style>
</head>
<body>
<p class="adv">lalalala</p>
</body>
</html>