//1 index.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel = "stylesheet" href = "styles.css">
</head>
<body>
<p class="texto-destacado">Ejercicio número uno</p>
</body>
</html>
styles.css
.texto-destacado {
color: red;
}
//2
index.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel = "stylesheet" href = "styles.css">
</head>
<body>
<h1 class="titulo-blog">Mi primer artículo de blog</h1>
<p>El primer párrafo de mi blog.</p>
</body>
</html>
styles.css
.titulo-blog {
color: red;
}
//3
index.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel = "stylesheet" href = "urgente.css">
</head>
<body>
<h1 class="titulo-blog">Mi primer artículo de blog</h1>
<p class="urgente">¡Última hora! Fuerte terremoto sacude la ciudad.</p>
<p>Otra noticia interesante del día.</p>
</body>
</html>
urgente.css
.urgente {
color: red;
}
//4
index.html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel = "stylesheet" href = "reset.css">
</head>
<body>
<h1 class="titulo-blog">Mi primer artículo de blog</h1>
<p class="urgente">¡Última hora! Fuerte terremoto sacude la ciudad.</p>
<p>Otra noticia interesante del día.</p>
</body>
</html>
reset.css
*{
margin: 0;
padding: 0;
}
.urgente {
color: red;
}
//5
- Content: El texto o la imagen que está dentro de la caja.
- Padding: El espacio entre el contenido y el borde de la caja.
- Border: El borde de la caja.
- Margin: El espacio entre la caja y otros elementos alrededor.
//6
styles.css
p {
font-size: 16px;
color: #333;
background-color: #f0f0f0;
padding: 20px;
border: 1px solid #ccc;
margin: 20px 0;
}