forked from niunmango/paginaBase
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathparticipantes.html
38 lines (38 loc) · 1.19 KB
/
participantes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Participantes</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Participantes del Proyecto</h1>
<nav>
<ul>
<li><a href="participantes.html">Participantes</a></li>
<li><a href="licencias.html">Licencias Creative Commons</a></li>
</ul>
</nav>
</header>
<main>
<ul>
<li>Participante 1
<p>
Hola, soy el participante 1
</p>
</li>
<li>Participante 2</li>
<li>Participante 3</li>
<!-- Agregar aquí los nombres de los demás participantes -->
</ul>
</main>
<footer>
<a onclick="window.history.back()" class="navButton flecha">←</a>
<a href="index.html" class="navButton">Inicio</a>
<a onclick="window.history.forward()" class="navButton flecha">→</a>
</footer>
</body>
</html>