-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (79 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
<!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>Intro JS y 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">Introducción JS y D3</h1>
<hr>
<div class="col-md-6">
<h2>Bloque I</h2>
<h3>1. Introducción Javascript</h3>
<p class="text-center">
<img class="img-responsive" src="https://camo.githubusercontent.com/1a7883d5943fa246a1383723ef51e4e821eca32f/687474703a2f2f662e636c2e6c792f6974656d732f34343345324a31443257337831453175336a31752f4a532d6169726272616b656d616e2e6a7067" />
<a class="btn btn-primary" href="bloque-I/js.html">Ver temas</a>
</p>
<hr>
<h3>2. Introducción Desarrollo Frontend</h3>
<p class="text-center">
<img class="img-responsive" src="http://www.arp-soft.com/media/1073/frontend.png" />
<a class="btn btn-primary" href="bloque-I/frontend.html">Ver temas</a>
</p>
<hr>
<h3>3. Introducción D3.js</h3>
<p class="text-center">
<img class="img-responsive" src="https://www.pubnub.com/wp-content/uploads/2014/01/D3.js-Logo.png" />
<a class="btn btn-primary" href="bloque-I/d3.html">Ver temas</a>
</p>
<hr>
</div>
<div class="col-md-6">
<h2>Bloque II</h2>
<h3>1. Gráficos de barras en D3.js</h3>
<p class="text-center">
<img class="img-responsive" src="bloque-II/bar-svg.gif" />
<a class="btn btn-primary" href="bloque-II/barras.html">Ver temas</a>
</p>
<hr>
<h3>2. Gráfico de círculos en D3.js</h3>
<p class="text-center">
<img class="img-responsive" src="bloque-II/scatterplot8.gif" />
<a class="btn btn-primary" href="bloque-II/circulos.html">Ver temas</a>
</p>
<hr>
<h3>3. Librerías y herramientas sobre D3.js</h3>
<p class="text-center">
<img class="img-responsive" src="https://d3js.org/preview.png"/>
<br>
<a class="btn btn-primary" href="bloque-II/recursos.html">Ver temas</a>
</p>
<hr>
</div>
</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>