1

Targeta de cumpleaños

es algo básico pero es un inicio para mi en este mundo del css.

<!DOCTYPE html><htmllang="es"><head><metacharset="UTF-8"><metaname="viewport"content="width=device-width, initial-scale=1.0"><title>Tarjeta de Cumpleaños</title><style>body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
        }
        section {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 100%;
            height: 100vh;
            background-image: url('fondo.jpg');
            background-size: cover;
            background-position: center;
        }
        .card {
            width: 400px;
            height: 300px;
            background: #A4383A;
            border-radius: 20px;
            box-shadow: 04px8pxrgba(0, 0, 0, 0.1);
            margin: 10px;
            padding: 20px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }
        img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 04px8pxrgba(0, 0, 0, 0.1);
        }
        .card-content {
            background: #C0B295;
            border-radius: 20px;
            padding: 10px;
            width: 90%;
            text-align: center;
        }
        .card-contentp {
            color: #A4383A;
            font-weight: 700;
            margin: 0;
        }
        .card-contentp.emoji {
            font-size: 24px;
        }
    </style></head><body><section><divclass="card"><divclass="card-content"><p>¡Feliz Cumpleaños, [Nombre]!</p></div><imgsrc="imagen.jpg"alt="Imagen de Cumpleaños"><divclass="card-content"><p>Espero que tengas un día lleno de alegría y sorpresas.</p><pclass="emoji">😁🎉</p></div></div></section></body></html>
Escribe tu comentario
+ 2