- index.html
- style.css
HTML
<!DOCTYPE html>
<html>
<head>
<title>Simplemente Cupcake</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1><title> tag</h1>
<img src="keks.jpg" alt="" />
<p>Esta etiqueta indica el título de la página.</p>
<p>Permite navegar entre las numerosas pestañas abiertas de forma muy cómoda.</p>
<p>Instructor Cupcake recomienda utilizar títulos claros.</p>
</body>
</html>
CSS
body {
margin: 20px;
font-size: 18px;
line-height: 24px;
}
h1 {
font-size: 52px;
line-height: 64px;
font-family: "Monaco", "Courier", monospace;
color: #618ad2;
}
img {
float: right;
width: 200px;
margin-left: 20px;
border-radius: 10px;
}
Ha ido a otra página
ObjetivosRealizado
0
- Cambia el título de la página de
Simplemente Cupcake
aInstructor Cupcake
.