Web/index.html

43 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>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="#sobre">About</a>
<a href="#proyectos">Projects</a>
<a href="#contacto">Contact</a>
</nav>
<section id="sobre">
<h2>About Us</h2>
<p>Bienvenido a Open Bokeron, somos un grupo de estudiantes de la ETSI Informática de la UMA que nos dedicamos a promociar el código libre.</p>
</section>
<section id="proyectos">
<h2>Projects</h2>
<p>Explore our latest projects that contribute to the world of Free/Libre software.</p>
</section>
<section id="contacto">
<h2>Contact Us</h2>
<p>Have questions or want to get involved? Reach out to us at <a href="mailto:info@openbokeron.org">info@openbokeron.org</a>.</p>
</section>
<footer>
<p>&copy; 2023 Open Bokeron. All rights reserved.</p>
</footer>
</body>
</html>