-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
53 lines (48 loc) · 1016 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Team Fossil</title>
<style>
html, body {
margin: 15px;
padding: 5px;
}
html {
background: #f9f6f4;
}
body {
font-family: Arial, sans-serif;
color: #312e33;
font-size: 100%;
line-height: 1.2;
}
h1 {
margin: 2px;
font-size: 2em;
}
h2 {
margin: 0px;
font-size: 1.5em;
}
footer {
padding: 0.8em;
background: #e5dcda;
font-weight: 300;
font-size: 90%;
}
</style>
</head>
<body>
<h1>Campaign Contributions by Industry Segment</h1>
<h2>What industry groups give the most to candidates for political office?</h2>
<ul>
<li><a href="visualization">Where does the money go?</a></li>
<li><a href="https://youtu.be/MeuMipFD5Ik">About Team Fossil's submission for the Hawaii Annual Code Challenge 2016</a></li>
</ul>
<hr>
<footer>
<p>Team Fossil, Copyright 2016</p>
</footer>
</body>
</html>