-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (59 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Avenir:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Data</h1>
<p class="subtitle">Data's Dark Past</p>
</header>
<section id="introduction">
<p>
Explore how subjective judgments were backed up with objective science.
</p>
</section>
<section id="main-content">
<div class="image-and-lines">
<!-- Reference the new image file you just converted and saved -->
<img src="Galton_Profile.png" alt="Francis Galton" class="galton-image">
<div class="horizontal-lines">
<div class="line-item">
<a href="eugenic-beginnings.html">Eugenic Beginnings</a>
</div>
<div class="line-item">
<a href="magnetic-regression.html">Scatterplots and the Magnetic Pull of the Regression Line</a>
</div>
<div class="line-item">
<a href="outliers.html">Outliers</a>
</div>
<div class="line-item">
<a href="family-72.html">Family 72: A Fictitious Data Analysis</a>
</div>
<div class="line-item">
<a href="galton-disciple.html">Galton's Disciple</a>
</div>
<div class="line-item">
<a href="fisher.html">Fisher Doubles Down</a>
</div>
<div class="line-item">
<a href="world-happiness-report.html">World Happiness Report: EU Case Study</a>
</div>
<div class="line-item">
<a href="subjective.html">Who Makes These Subjective Judgments?</a>
</div>
<div class="line-item">
<a href="conclusion.html">Conclusion</a>
</div>
</div>
</div>
</section>
<footer>
<p>© 2024 Colin Geraghty. All rights reserved.</p>
</footer>
</body>
</html>