-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (66 loc) · 2.89 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Integración Datos D3</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<style type="text/css">
img{
width: 100%;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-center">Integración Datos D3 <small>3hs</small></h1>
</div>
<hr>
<div class="row">
<h2>Bloque I</h2>
<div class="col-md-6">
<h3>1. Actividad: D3 + Google Spreadsheet <a class="btn btn-primary" href="bloque-I/circulos.html">Ingresar</a></h3>
<p class="text-center">
<img class="img-responsive" src="bloque-I/ejemplo_circulos/scatterplot8.gif" />
</p>
</div>
<div class="col-md-6">
<h3>2. Actividad: D3 + API <a class="btn btn-primary" href="bloque-I/paises.html">Ingresar</a></h3>
<p class="text-center">
<img class="img-responsive" src="bloque-I/ejemplo_paises/paises-final.gif" />
</p>
</div>
</div>
<hr/>
<div class="row">
<h2>Bloque II</h2>
<div class="col-md-6">
<h3>1. Actividad: CartoDB <a class="btn btn-primary" href="bloque-II/cartodb.html">Ingresar</a></h3>
<p class="text-center">
<img width="100%" src="http://cartodb.s3.amazonaws.com/static/logos_full_cartodb_light.png"/>
</p>
</div>
<div class="col-md-6">
<h3>2. Librerías y herramientas sobre D3.js <a class="btn btn-primary" href="bloque-II/recursos.html">Ingresar</a></h3>
<p class="text-center">
<img class="img-responsive" src="https://d3js.org/preview.png"/>
</p>
</div>
</div>
</div>
<hr/>
<footer class="footer">
<div class="container">
<p class="text-muted">Pablo H. Paladino - <a href="http://twitter.com/palamago">@palamago</a></p>
</div>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</body>
</html>