Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="es">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Curso de Sysadmin</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- margin: 0;
- padding: 0;
- background-color: #f4f4f4;
- color: #333;
- }
- header {
- background-color: #004080;
- color: white;
- padding: 20px 0;
- text-align: center;
- }
- nav {
- background: #003366;
- padding: 10px;
- text-align: center;
- }
- nav a {
- color: white;
- text-decoration: none;
- margin: 0 15px;
- font-weight: bold;
- }
- nav a:hover {
- text-decoration: underline;
- }
- main {
- padding: 20px;
- }
- footer {
- background-color: #004080;
- color: white;
- text-align: center;
- padding: 10px 0;
- position: fixed;
- width: 100%;
- bottom: 0;
- }
- h1, h2 {
- margin-top: 0;
- }
- .content {
- max-width: 900px;
- margin: auto;
- }
- </style>
- </head>
- <body>
- <header>
- <h1>Curso de Administración de Sistemas</h1>
- <p>Introducción a Linux, servidores y redes</p>
- </header>
- <nav>
- <a href="#introduccion">Introducción</a>
- <a href="#temario">Temario</a>
- <a href="#contacto">Contacto</a>
- </nav>
- <main>
- <div class="content">
- <section id="introduccion">
- <h2>Introducción</h2>
- <p>Este curso está orientado a formar administradores de sistemas capaces de gestionar servidores Linux, servicios de red, seguridad informática y automatización de tareas.</p>
- </section>
- <section id="temario">
- <h2>Temario</h2>
- <ul>
- <li>Fundamentos de Linux y Unix</li>
- <li>Gestión de usuarios y permisos</li>
- <li>Administración de servicios de red</li>
- <li>Seguridad de sistemas</li>
- <li>Virtualización y contenedores</li>
- <li>Automatización con scripts</li>
- </ul>
- </section>
- <section id="contacto">
- <h2>Contacto</h2>
- </section>
- </div>
- </main>
- <footer>
- <p>© 2025 Curso de Sysadmin - Todos los derechos reservados</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement