WEBLEB
Inicio
Editora de código
Iniciar sesión
Pro
Español
English
Français
Español
Português
Deutsch
Italiano
हिंदी
Arte de texto
1220
Andev.web
Abrir en el editor
Publica tu código
Recomendado
5 July 2025
Ejemplo de selector de fecha HTML
18 May 2024
Recetas de Starbucks
20 September 2025
Animación de carga de CSS Spinner
HTML
Copy
Andev Web
WEB
LEB
CSS
Copy
@import url("https://fonts.googleapis.com/css2?family=Squada+One&display=swap"); :root { --lcolor: #10fa9f; --dcolor: #0cc97f; } body { background-color: #ff6b8a; display: grid; place-items: center; height: 100vh; } .art { display: grid; width: 450px; height: 250px; background-color: #10fa9f; font-family: 'Squada One'; overflow: hidden; position: relative; color: #ff6b8a; border-radius: 2px; -webkit-text-stroke: 4px #fff; box-shadow: -2px 1px 0 2px var(--dcolor), -3px 2px 0 2px var(--dcolor), -4px 3px 0 2px var(--dcolor), -5px 4px 0 2px var(--dcolor), -6px 5px 0 2px var(--dcolor), -7px 6px 0 2px var(--dcolor), -8px 7px 0 2px var(--dcolor), -9px 8px 0 2px var(--dcolor), -10px 9px 0 2px var(--dcolor), -11px 10px 0 2px var(--dcolor); } .art .one { position: absolute; justify-self: start; align-self: start; left: -25px; height: 124px; line-height: 0.425; font-size: 235px; text-shadow: 0 0 2px rgba(0,0,0,0.75); } .art .two { position: absolute; justify-self: end; align-self: end; height: 124px; line-height: 0.95; font-size: 215px; right: -10px; bottom: 15px; text-shadow: 0 0 2px rgba(0,0,0,0.75); } .art .one, .art .two { filter: drop-shadow(2px -2px 0 rgba(0,0,0,0.105)); }
JS
Copy
/* Replace with your JS Code (Leave empty if not needed) */