Rediseño usando SimpleCss y FlexboxGrid

This commit is contained in:
2024-02-20 17:35:37 +01:00
parent d032ca2241
commit 040a71dc19
5 changed files with 161 additions and 144 deletions

View File

@ -1,28 +1,42 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linux Party - Open Bokeron</title>
<link rel="stylesheet" href="../style.css">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/flexboxgrid/6.3.1/flexboxgrid.min.css" type="text/css">
</head>
<body>
<body>
<!-- Common header -->
<header>
<h1>Open Bokeron</h1>
<p>¡"Abre tu mente, abre tu código" con Open Bokeron!</p>
<p>"¡Abre tu mente, abre tu código!"</p>
<nav>
<ul>
<li>
<a href="/">Página principal</a>
</li>
<li>
<a href="proyectos.html">Proyectos</a>
</li>
<li>
<a href="contacto.html">Contacto</a>
</li>
</ul>
</nav>
</header>
<nav>
<a href="../">Página principal</a>
<a href="../proyectos.html">Proyectos</a>
<a href="../contacto.html">Contacto</a>
</nav>
<!-- Common footer -->
<footer>
<p>&copy; 2024 Open Bokeron.</p>
<p>Todos los derechos reservados.</p>
<p>&copy; 2024 Open Bokeron.</p>
<p>
Made with <span style="color: #e25555;">&#9829;</span> in
<a href="https://bitbucket.org/openbokeron/openbokeron.bitbucket.io">Bitbucket</a>
</p>
</footer>
</body>
</html>