OSMIEM™ Documentation
Centro de documentación
Explora documentación, tutoriales y guías técnicas.
Probando robot chidoris 1.0
robot chidoris
Código de referencia:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Responsive Landing Page</title>
<style>
:root {
--primary: #2563eb;
--dark: #1e293b;
--light: #f8fafc;
--text: #334155;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
background-color: var(--light);
color: var(--text);
}
header {
background-color: white;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
padding: 1rem 2rem;
position: sticky;
top: 0;
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-weight: 700;
font-size: 1.5rem;
color: var(--primary);
}
.nav-links {
list-style: none;
display: flex;
gap: 1.5rem;
}
.nav-links a {
text-decoration: none;
color: var(--dark);
font-weight: 500;
}
.hero {
max-width: 1200px;
margin: 4rem auto;
padding: 0 2rem;
text-align: center;
}
.hero h1 {
font-size: 3rem;
color: var(--dark);
margin-bottom: 1rem;
}
.hero p {
font-size: 1.25rem;
max-width: 600px;
margin: 0 auto 2rem;
}
.btn {
display: inline-block;
background-color: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 0.375rem;
text-decoration: none;
font-weight: 600;
}
footer {
background-color: var(--dark);
color: white;
text-align: center;
padding: 2rem;
margin-top: 8rem;
}
@media (max-width: 768px) {
.hero h1 { font-size: 2rem; }
.nav-links { display: none; }
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">MyWebsite</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main class="hero" id="home">
<h1>Build Something Amazing</h1>
<p>This is a clean, modern, responsive template ready for your customized content. Edit the text and styles to make it yours.</p>
<a href="#" class="btn">Get Started</a>
</main>
<footer>
<p>© 2026 MyWebsite. All rights reserved.</p>
</footer>
</body>
</html>