top of page
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Habitax</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
padding: 20px;
}
.title {
font-size: 80px;
font-weight: bold;
color: #ffcc00;
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.title span {
display: inline-block;
animation: bounce 1.5s infinite alternate;
}
.title span:nth-child(2) { animation-delay: 0.1s; }
.title span:nth-child(3) { animation-delay: 0.2s; }
.title span:nth-child(4) { animation-delay: 0.3s; }
.title span:nth-child(5) { animation-delay: 0.4s; }
.title span:nth-child(6) { animation-delay: 0.5s; }
.title span:nth-child(7) { animation-delay: 0.6s; }
@keyframes bounce {
0% { transform: translateY(0); }
100% { transform: translateY(-10px); }
}
.house {
width: 50px;
height: 50px;
background-color: #ffcc00;
clip-path: polygon(50% 0%, 100% 50%, 75% 50%, 75% 100%, 25% 100%, 25% 50%, 0% 50%);
margin-right: 10px;
}
.gradient-text {
font-size: 24px;
font-weight: bold;
background: linear-gradient(45deg, #ff7e5f, #feb47b);
-webkit-background-clip: text;
color: transparent;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="title">
<div class="house"></div>
<span>H</span><span>a</span><span>b</span><span>i</span><span>t</span><span>a</span><span>x</span>
</div>
<div class="gradient-text">Formulario para subir propiedades</div>
</body>
</html>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Habitax</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
padding: 20px;
}
.title {
font-size: 80px;
font-weight: bold;
color: #ffcc00;
margin-top: 20vh;
}
.loading {
font-size: 20px;
color: #333;
margin-top: 10px;
display: inline-block;
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="title">Habitax</div>
<div class="loading">⏳</div>
</body>
</html>

¡TE ENVIAREMOS UNA OFERTA!
PARA COMPRAR TU CASA
Compramos tu casa solo al llenar este formulario de 4 sencillos pasos
bottom of page