<?php
<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>
<?php
<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>
<?php
<html>
<head>
<title>Mi documento</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>Mi primera hoja de estilo</h1>
</body>
</html>
<?php
body {
background-color: #FF0000;
}
<?php
<html>
<head>
<title> Mi primera página con CSS </tittle>
<link rel="stylesheet" type="text/css" href="ejemplo1.css" />
</head>
<body>
<p>lalalala</p>
</body>
</html>
<?php
p{
font-family: arial;
font-style: italic;
color: blue;
background-image: url("butterfly.gif");
background-repeat: no-repeat;
border-width: 5px;
border-style: dashed;
}