-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatistics.html
More file actions
204 lines (162 loc) · 4.5 KB
/
Copy pathstatistics.html
File metadata and controls
204 lines (162 loc) · 4.5 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Statistics | IAL ATLAS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #f5f8fc;
color: #10233f;
}
header {
background: #071b36;
color: white;
padding: 22px 7%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 28px;
font-weight: 800;
letter-spacing: 1px;
}
header a {
color: white;
text-decoration: none;
}
.hero {
background: linear-gradient(135deg, #071b36, #0b3c73);
color: white;
text-align: center;
padding: 70px 20px;
}
.hero h1 {
font-size: 48px;
margin-bottom: 12px;
}
.hero p {
color: #dcecff;
font-size: 18px;
}
.section {
max-width: 1100px;
margin: auto;
padding: 60px 20px;
}
.section h2 {
text-align: center;
font-size: 32px;
margin-bottom: 12px;
}
.intro {
text-align: center;
color: #607089;
margin-bottom: 40px;
}
.topics {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.topic {
background: white;
padding: 28px;
border-radius: 14px;
box-shadow: 0 5px 20px rgba(0,0,0,0.08);
transition: transform 0.2s;
}
.topic:hover {
transform: translateY(-4px);
}
.topic h3 {
font-size: 21px;
margin-bottom: 10px;
}
.topic p {
color: #68778d;
line-height: 1.6;
}
.back {
display: inline-block;
margin-top: 40px;
background: #32a9e8;
color: white;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
}
footer {
background: #071b36;
color: #b9c9dc;
text-align: center;
padding: 25px;
margin-top: 40px;
}
@media (max-width: 750px) {
.topics {
grid-template-columns: 1fr;
}
.hero h1 {
font-size: 38px;
}
}
</style>
</head>
<body>
<header>
<a href="index.html" class="logo">IAL ATLAS</a>
<a href="mathematics.html">← Mathematics</a>
</header>
<section class="hero">
<h1>Statistics</h1>
<p>Edexcel International A Level Mathematics</p>
</section>
<section class="section">
<h2>Statistics Topics</h2>
<p class="intro">
Explore statistics topics, concepts, formulas and exam-focused resources.
</p>
<div class="topics">
<div class="topic">
<h3>Data Collection</h3>
<p>Types of data, sampling methods, populations and samples.</p>
</div>
<div class="topic">
<h3>Data Presentation</h3>
<p>Tables, diagrams, histograms, cumulative frequency and box plots.</p>
</div>
<div class="topic">
<h3>Probability</h3>
<p>Probability rules, conditional probability and probability models.</p>
</div>
<div class="topic">
<h3>Statistical Distributions</h3>
<p>Discrete and continuous distributions and their applications.</p>
</div>
<div class="topic">
<h3>Normal Distribution</h3>
<p>Standardisation, probabilities and applications of the normal model.</p>
</div>
<div class="topic">
<h3>Hypothesis Testing</h3>
<p>Null hypotheses, significance levels, critical regions and conclusions.</p>
</div>
</div>
<div style="text-align: center;">
<a href="mathematics.html" class="back">← Back to Mathematics</a>
</div>
</section>
<footer>
© 2026 IAL ATLAS • Independent student resource • Not affiliated with Pearson
</footer>
</body>
</html>