Ejercicios Css
1)Crea una pagina con el siguiente contenido
HTML y definir tres mensajes entre las marcas h1, h2 y h3. Definir el mismo color para el texto de cada bloque y colores diferentes para el fondo de los mismos (cada marca HTML debe tener definida la propiedad style).
<html>
<head>
<title>Problema</title>
<style type="text/css">
h1 {color:#ff0000;background-color:#ffff00}
</style>
</head>
<body>
<h1>
Primer título</h1>
<h1>
Segundo título</h1>
</body>
</html>
2)a la página que creamos antes, le vamos agregar un titulo
<html> <head> <title> Titulo de mi página</title> </head> <body> contenido1 </body> </html>




0 comentarios:
Publicar un comentario