-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0576d17
commit 12b5b00
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="es"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Documentos PDF - Spectral Hackers Guild</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body class="bg-gray-100 text-gray-900"> | ||
<nav class="navbar navbar-expand-lg navbar-dark bg-dark py-3"> | ||
<div class="container"> | ||
<a class="navbar-brand text-xl font-bold" href="index.html">Spectral Hackers Guild</a> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarNav"> | ||
<ul class="navbar-nav ms-auto"> | ||
<li class="nav-item"><a class="nav-link" href="index.html">Inicio</a></li> | ||
<li class="nav-item"><a class="nav-link" href="learning.html">Aprendizaje</a></li> | ||
<li class="nav-item"><a class="nav-link" href="pdfs.html">Documentos PDF</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<header class="bg-purple-900 text-white text-center py-12"> | ||
<h1 class="text-5xl font-bold">Documentos PDF</h1> | ||
<p class="mt-4 text-xl">Descarga los documentos relacionados con hacking y ciberseguridad</p> | ||
</header> | ||
<div class="container my-12"> | ||
<section class="my-12"> | ||
<h2 class="text-3xl font-bold text-purple-900 mb-6">Documentos Disponibles</h2> | ||
<p>Aquí puedes descargar documentos en PDF:</p> | ||
<ul class="list-disc list-inside ml-4"> | ||
<li><a href="docs/UNAM.pdf" download>Iniciativa de Ciberseguridad - UNAM (PDF)</a></li> | ||
<li><a href="docs/Infografia_UNAM.pdf" download>Infografía UNAM (PDF)</a></li> | ||
</ul> | ||
</section> | ||
</div> | ||
<footer class="bg-dark text-white text-center py-4"> | ||
<p>© 2024 Spectral Hackers Guild. Todos los derechos reservados.</p> | ||
</footer> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
</body> | ||
</html> |