36 lines
916 B
HTML
36 lines
916 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Estructura de Madrid-Destino 2016</title>
|
|
<link type="text/css" rel="stylesheet" href="style.css"/>
|
|
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
|
|
<style type="text/css">
|
|
.node circle {
|
|
cursor: pointer;
|
|
fill: #fff;
|
|
stroke: steelblue;
|
|
stroke-width: 1.5px;
|
|
}
|
|
|
|
.node text {
|
|
font-size: 11px;
|
|
}
|
|
|
|
path.link {
|
|
fill: none;
|
|
stroke: #ccc;
|
|
stroke-width: 1.5px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Estructura de Madrid Destino 2016</h1>
|
|
<p>Para entender el contexto vea el <a href="https://infotics.es/articulo/mapas-mentales-con-orgmode/">artículo de Infotics</a>.</p>
|
|
<ul>
|
|
<li><a href="d3js.html">Con D3.js</li>
|
|
<li><a href="pinturajs.html">Con pintora.js</a></li>
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
|