ALFAS :D
<head>
<style>
body {
background-color: green;
}
h2 {
color: blue;
margin-left: 40px;
}
</style>
</head><head>
<link rel="stylesheet" type="text/css" href="estilos.css">
</head><h6 style="color:blue;margin-top:30px;">ALFAS :V</h6><head>
<link rel="stylesheet" type="text/css" href="estilo.css">
<style>
h1 {
color: green;
}
</style>
</head>Color verde
<head>
<style>
h1 {
color: green;
}
</style>
<link rel="stylesheet" type="text/css" href="estilo.css">
</head>Color link
/*Selector*/
h1{
/*Declaracion*/
/*Propiedad Valor*/
color:blue;
/*Propiedad Valor*/
font-size:12px;
}<!-- HTML -->
<h1>ALFAS</h1>
/* CSS */
h1{
color: green;
}<!-- HTML -->
<div class="alfas"> <h1>ALFAS</h1> </div>
<div class="alfas">
<ul>
<li>Uno</li>v
<li>Dos</li>
</ul>
</div>
/* CSS */
.alfas{
text-align: center;
color: red;
}<!-- HTML -->
<h1 id="alfas">ALFAS</h1>
/* CSS */
#alfas {
text-align: center;
color: red;
}/* Varios Elementos */
h1 {
text-align: center;
color: red;
}
h2 {
text-align: center;
color: red;
}
p {
text-align: center;
color: red;
}
/* Agrupar */
h1, h2, p {
text-align: center;
color: red;
}p {
color: red;
/* Una Sola Linea De Comentarios */
text-align: center;
}
/* Estas
son
unas
múltiples
linea de comentarios*/