-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresources.html
83 lines (80 loc) · 2 KB
/
resources.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>
<link
href="https://fonts.googleapis.com/css2?family=Lato&display=swap"
rel="stylesheet"
/>
<style>
body {
font-family: "Lato", sans-serif;
}
.pagination a {
color: black;
padding: 8px 16px;
text-decoration: none;
transition: background-color 0.3s;
}
/* Style the active/current link */
.pagination a.active {
background-color: blue;
color: white;
}
/* Add a grey background color on mouse-over */
.pagination a:hover:not(.active) {
background-color: #ddd;
}
</style>
<div align="center">
<h1>Conclusion</h1>
<p>
Wear masks, social distance, and don't open up the economy prematurely!<br/> If
everyone wore a mask, the US could have coronavirus under control in 4-8
weeks. </br>Covid-19 is not a political issue, it's a threat to all of humanity.<br/>
Let's work together and trust in science.
</p>
<h2>Resources Used</h2>
<h3>Data</h3>
<p>
<a
href="https://github.com/nytimes/covid-19-data/blob/master/us-states.csv"
>
NYTimes Covid-19 Data
</a>
</p>
<p>
<a
href="https://www.usatoday.com/storytelling/coronavirus-reopening-america-map/"
>
USA Today Coronavirus Reopening Map
</a>
</p>
<h3>Code</h3>
<p>
<a href="https://bl.ocks.org/larsenmtl/e3b8b7c2ca4787f77d78f58d41c3da91">
Multiline Tooltip
</a>
</p>
<p>
<a
href="https://bl.ocks.org/susielu/63269cf8ec84497920f2b7ef1ac85039#data.hidden.tsv"
>D3 Annotations</a
>
</p>
<p>
<a href="https://bl.ocks.org/d3noob/23e42c8f67210ac6c678db2cd07a747e">D3 Axis Labels</a>
</p>
<p>
<a href="https://www.w3schools.com/howto/howto_css_pagination.asp">
W3Schools Pagination
</a>
</p>
<br />
<div id="container"></div>
<div class="pagination">
<a href="illinois.html">«</a>
<a href="index.html">1</a>
<a href="ny.html">2</a>
<a href="cali.html">3</a>
<a href="illinois.html">4</a>
<a class="active"href="resources.html">5</a>
</div>
</div>