Advertisement
sergio_educacionit

sysadmin.html

Apr 26th, 2025
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.82 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="es">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Curso de Sysadmin</title>
  7.     <style>
  8.         body {
  9.             font-family: Arial, sans-serif;
  10.             margin: 0;
  11.             padding: 0;
  12.             background-color: #f4f4f4;
  13.             color: #333;
  14.         }
  15.         header {
  16.             background-color: #004080;
  17.             color: white;
  18.             padding: 20px 0;
  19.             text-align: center;
  20.         }
  21.         nav {
  22.             background: #003366;
  23.             padding: 10px;
  24.             text-align: center;
  25.         }
  26.         nav a {
  27.             color: white;
  28.             text-decoration: none;
  29.             margin: 0 15px;
  30.             font-weight: bold;
  31.         }
  32.         nav a:hover {
  33.             text-decoration: underline;
  34.         }
  35.         main {
  36.             padding: 20px;
  37.         }
  38.         footer {
  39.             background-color: #004080;
  40.             color: white;
  41.             text-align: center;
  42.             padding: 10px 0;
  43.             position: fixed;
  44.             width: 100%;
  45.             bottom: 0;
  46.         }
  47.         h1, h2 {
  48.             margin-top: 0;
  49.         }
  50.         .content {
  51.             max-width: 900px;
  52.             margin: auto;
  53.         }
  54.     </style>
  55. </head>
  56. <body>
  57.  
  58.     <header>
  59.         <h1>Curso de Administración de Sistemas</h1>
  60.         <p>Introducción a Linux, servidores y redes</p>
  61.     </header>
  62.  
  63.     <nav>
  64.         <a href="#introduccion">Introducción</a>
  65.         <a href="#temario">Temario</a>
  66.         <a href="#contacto">Contacto</a>
  67.     </nav>
  68.  
  69.     <main>
  70.         <div class="content">
  71.             <section id="introduccion">
  72.                 <h2>Introducción</h2>
  73.                 <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>
  74.             </section>
  75.  
  76.             <section id="temario">
  77.                 <h2>Temario</h2>
  78.                 <ul>
  79.                     <li>Fundamentos de Linux y Unix</li>
  80.                     <li>Gestión de usuarios y permisos</li>
  81.                     <li>Administración de servicios de red</li>
  82.                     <li>Seguridad de sistemas</li>
  83.                     <li>Virtualización y contenedores</li>
  84.                     <li>Automatización con scripts</li>
  85.                 </ul>
  86.             </section>
  87.  
  88.             <section id="contacto">
  89.                 <h2>Contacto</h2>
  90.                 <p>Para más información, escribir a: <a href="mailto:[email protected]">[email protected]</a></p>
  91.             </section>
  92.         </div>
  93.     </main>
  94.  
  95.     <footer>
  96.         <p>© 2025 Curso de Sysadmin - Todos los derechos reservados</p>
  97.     </footer>
  98.  
  99. </body>
  100. </html>
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement