-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (69 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Gráfico do coronavírus no Brasil</title>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="./js/get_array_data.js"></script>
<script src="./js/fistgrafic.js"></script>
<!--
Timeless Template
http://www.templatemo.com/tm-517-timeless
-->
<!-- load CSS -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:300,400">
<!-- Google web font "Open Sans" -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- https://getbootstrap.com/ -->
<link rel="stylesheet" href="css/templatemo-style.css">
<!-- Templatemo style -->
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-12">
<header class="text-center tm-site-header">
<div class="tm-site-logo"></div>
<h1 class="pl-4 tm-site-title">Gráfico do coronavírus no Brasil</h1>
</header>
</div>
</div>
</div>
<div class="container">
Selecione o País: <select id="Country_S"></select>
<div class="row anyc">
<div id="brasil_data" style="width: 100%; height: 100; min-height: 500px;"></div>
</div>
</div>
<br /><br />
<div class="container">
<div class="row">
<div id="word_data" style="width: 100%; height: 100; min-height: 500px;"></div>
</div>
</div>
<!-- row -->
<hr>
<!-- Footer -->
<footer class="row mt-5 mb-5">
<div class="col-lg-12">
<p class="text-center tm-text-gray tm-copyright-text mb-0">Copyright ©
<span class="tm-current-year">2020</span> Gráfico do coronavírus no Brasil
| Design: <a href="http://templatemo.com/tm-517-timeless" class="tm-text-white">Timeless</a>
</p>
</div>
</footer>
</div>
<!-- .container -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-161657022-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-161657022-1');
</script>
</body>
</html>