-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
46 lines (46 loc) · 1.07 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<html>
<head>
<meta charset="utf-8">
<title>Slides - Grupo de estudio Programación competitiva UFPS</title>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<style>
html{
font-family: 'Roboto', sans-serif;
height: 100%;
}
body{
height: 100%;
background-color: #EEE;
}
a{
color: #333;
}
a:hover{
color: #777;
}
</style>
</head>
<body>
<h3>Grupo de estudio en programación competitiva UFPS</h3>
<ul>
<li>
<a href="./0-Presentación/index.html">Presentación</a>
</li>
<li>
<a href="./1-Introducción,input,output/index.html">1. Introducción, Input, Output</a>
</li>
<li>
<a href="./2-Estructuras de Datos I/index.html">2. Estructuras de datos I</a>
</li>
<li>
<a href="./2-Estructuras de Datos II/index.html">3. Estructuras de datos II</a>
</li>
<li>
<a href="./3-Matematicas/index.html">4. Matematicas</a>
</li>
<li>
<a href="./4-Grafos: Introduccion/index.html">5. Grafos: Introducción</a>
</li>
</ul>
</body>
</html>