-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Statewise Unemployment Claims</title>
<style>
body {
margin: 0;
background-color: aliceblue;
}
/* Make the page 700px wide, centered */
.container {
width: 700px;
margin: 4em auto;
}
/* Use a nice font */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1 {
text-align: center;
font-size: 3em;
margin: 2em 0;
}
.graphic {
max-width: 500px;
margin: 2em auto;
}
#footer {
text-align: center;
padding: 4em;
background-color: #f0f1ff;
border-top: solid white 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>US weekly jobless claims</h1>
<h3>Weekly change in jobless claims, statewise</h3>
<p>This map auto-updates every Thursday with the weekly jobless claims report from the US Labor Department. </p>
<div class="graphic">
<iframe title="Statewise change in jobless claims " aria-label="Map" id="datawrapper-chart-unjjc" src="https://datawrapper.dwcdn.net/unjjc/1/" scrolling="no" frameborder="0" style="width: 0; min-width: 100% !important; border: none;" height="536" data-external="1"></iframe><script type="text/javascript">!function(){"use strict";window.addEventListener("message",(function(a){if(void 0!==a.data["datawrapper-height"]){var e=document.querySelectorAll("iframe");for(var t in a.data["datawrapper-height"])for(var r=0;r<e.length;r++)if(e[r].contentWindow===a.source){var i=a.data["datawrapper-height"][t]+"px";e[r].style.height=i}}}))}();
</script>
</div>
<p>The data shows the number of Americans filing new claims for unemployment benefits and is an important indicator of the state of the employment and the health of the economy.</p>
</div>
<div id="footer">
<p>This website was made using a tutorial on <a href="https://jonathansoma.com">auto-updating websites</a>.</p>
</div>
</html>