-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Currency chart</title>
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<header class="bg-white black-80 tc pv4 avenir">
<a href="" class="bg-black-80 ba b--black dib pa3 w2 h2 br-100">
<svg class="white" data-icon="skull" viewBox="0 0 32 32" style="fill:currentcolor"><title>skull icon</title><path d="M16 0 C6 0 2 4 2 14 L2 22 L6 24 L6 30 L26 30 L26 24 L30 22 L30 14 C30 4 26 0 16 0 M9 12 A4.5 4.5 0 0 1 9 21 A4.5 4.5 0 0 1 9 12 M23 12 A4.5 4.5 0 0 1 23 21 A4.5 4.5 0 0 1 23 12"></path></svg>
</a>
<h1 class="mt2 mb0 baskerville i fw1 f1">Chart JS</h1>
<h2 class="mt2 mb0 f6 fw4 ttu tracked">Una grafica simple que muestra el tipo de cambio con respecto al dolar en mas de 20 paises</h2>
</header>
<main>
<div>
<canvas id="myChart"></canvas>
</div>
<h4 class="f6 fw6">Referencias</h4>
<div class="pa3 pa5-ns" id="container"></div>
</main>
<footer class="pv4 ph3 ph5-m ph6-l mid-gray">
<small class="f6 db tc">© 2016 <b class="ttu">SOME COMPANY Inc</b>., All Rights Reserved</small>
<div class="tc mt3">
<a href="/language/" title="Language" class="f6 dib ph2 link mid-gray dim">Language</a>
<a href="/terms/" title="Terms" class="f6 dib ph2 link mid-gray dim">Terms of Use</a>
<a href="/privacy/" title="Privacy" class="f6 dib ph2 link mid-gray dim">Privacy</a>
</div>
</footer>
<script src="dist/main.js"></script>
</body>
</html>