Added projects page with some styling

This commit is contained in:
Abdulee 2024-02-19 19:46:49 +01:00
parent 1d1f23f846
commit bfdfb5df1c
2 changed files with 67 additions and 0 deletions

43
proyectos.html Normal file
View File

@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Proyectos - Open Bokeron</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Open Bokeron</h1>
<p>Evangelizando el software libre</p>
</header>
<nav>
<a href="index.html">Página principal</a>
<a href="proyectos.html">Proyectos</a>
<a href="contacto.html">Contacto</a>
</nav>
<section>
<h1>Proyectos y eventos</h1>
<p>En Open Bokeron, intentamos llevar a cabo varias actividades, proyectos y eventos para promover el uso de software libre en la Universidad de Málaga. Esta página enumera todos nuestros próximos proyectos y también sirve como un archivo de todos nuestros proyectos antiguos.</p>
</section>
<section>
<h2>Próximos eventos</h2>
<div class="proyectos">
<a href="linux-party.html">
<img src="assets/linux-party.png" alt="Linux Party Image">
</a>
<h3>Fiesta de Instalación de Linux</h3>
<p>Una introducción al mundo de software libre con la instalación de Linux.</p>
</div>
</section>
<footer>
<p>&copy; 2024 Open Bokeron. All rights reserved.</p>
</footer>
</body>
</html>

View File

@ -40,3 +40,27 @@ footer {
bottom: 0; bottom: 0;
width: 100%; width: 100%;
} }
.proyectos {
display: inline-block;
margin: 20px;
width: 200px;
}
.proyectos img {
width: 100%;
height: auto;
display: block;
object-fit: cover;
}
.proyectos h3 {
margin-top: 10px;
font-size: 16px;
}
.proyectos p {
font-size: 14px;
color: #555;
}