forked from niunmango/paginaBase
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
28 lines (28 loc) · 943 Bytes
/
index.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Documento Base</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>Documento Base</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>
<img src="logo_CURZA.png" alt="Logo del CURZA de la Universidad del Comahue" class="center">
</main>
<footer>
<a onclick="window.history.back()" class="navButton flecha">←</a>
<a onclick="window.history.forward()" class="navButton flecha">→</a>
</footer>
</body>
</html>