-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmathematics.html
More file actions
143 lines (114 loc) · 2.94 KB
/
Copy pathmathematics.html
File metadata and controls
143 lines (114 loc) · 2.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IAL ATLAS | Mathematics</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #f5f8fc;
color: #10233f;
}
header {
background: #071b36;
padding: 18px 7%;
}
header a {
color: white;
text-decoration: none;
font-weight: bold;
}
.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;
}
.container {
max-width: 1100px;
margin: auto;
padding: 60px 20px;
}
.container h2 {
margin-bottom: 30px;
font-size: 30px;
}
.topics {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.topic {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 5px 18px rgba(0,0,0,0.07);
}
.topic h3 {
margin-bottom: 10px;
}
.topic p {
color: #64748b;
line-height: 1.6;
}
footer {
background: #071b36;
color: #b9c9dc;
text-align: center;
padding: 25px;
}
@media (max-width: 750px) {
.topics {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<header>
<a href="index.html">← Back to IAL ATLAS</a>
</header>
<section class="hero">
<h1>Mathematics</h1>
<p>Edexcel International A Level</p>
</section>
<section class="container">
<h2>Topics</h2>
<div class="topics">
<a href="pure-mathematics.html" class="topic"
style="text-decoration: none; color: inherit; display: block;">
<h3>Pure Mathematics</h3>
<p>Functions, algebra, calculus, sequences and more.</p>
</a>
<a href="statistics.html" class="topic"
style="text-decoration: none; color: inherit; display: block;">
<h3>Statistics</h3>
<p>Probability, distributions, hypothesis testing and data.</p>
</a>
<a href="mechanics.html" class="topic"
style="text-decoration: none; color: inherit; display: block;">
<h3>Mechanics</h3>
<p>Forces, motion, momentum and mechanical modelling.</p>
</a>
</div>
</div>
</section>
<footer>
© 2026 IAL ATLAS
</footer>
</body>
</html>