Added projects page with some styling
This commit is contained in:
parent
1d1f23f846
commit
bfdfb5df1c
43
proyectos.html
Normal file
43
proyectos.html
Normal 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>© 2024 Open Bokeron. All rights reserved.</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
24
style.css
24
style.css
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user