Volver al inicio
Editor de Código
Edita tu código HTML y visualiza los resultados en tiempo real
Código HTML
Ejecutar
Copiar
Descargar
<!DOCTYPE html> <html lang="es"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Mi Proyecto</title> <style> /* Estilos aquí */ body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 20px; background-color: #f0f0f0; color: #333; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 20px; box-sizing: border-box; } h1 { color: #2563eb; } /* Añade más estilos según necesites */ </style> </head> <body> <div class="container"> <h1>Bienvenido a mi proyecto</h1> <p>Este es un ejemplo de código HTML. Puedes editarlo según tus necesidades.</p> </div> </body> </html>
Vista Previa