-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (28 loc) · 1.21 KB
/
index.html
File metadata and controls
31 lines (28 loc) · 1.21 KB
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
<!DOCTYPE html>
<!-- Copyright (c) 2016, Nebil Kawas García
- This source code is subject to the terms of the Mozilla Public License.
- If a copy of the MPL2 was not distributed with this file,
- You can obtain one at <https://mozilla.org/MPL/2.0/>. -->
<html>
<head>
<meta charset='utf-8'>
<title>d3js-demo</title>
<!-- Agregamos algunas gotas de CSS. -->
<link href='style.css' rel='stylesheet'>
<!-- Agregamos la librería D3.js (minimizada) desde su sitio web. -->
<script src='https://d3js.org/d3.v4.min.js' charset='utf-8'></script>
</head>
<body>
<h1 id='d3-header'>D3</h1>
<p>Mi color es verde.</p>
<p>Mi color también es verde.</p>
<!-- El código en JavaScript estará en los siguientes archivos,
que deberán situarse **justo antes** del cierre del 'body'
puesto que, primero, necesitaremos cargar todo el DOM. -->
<!-- <script src='snippet01.js' charset='utf-8'></script> -->
<!-- <script src='snippet02.js' charset='utf-8'></script> -->
<!-- <script src='snippet03.js' charset='utf-8'></script> -->
<!-- <script src='snippet04.js' charset='utf-8'></script> -->
<script src='snippet05.js' charset='utf-8'></script>
</body>
</html>