-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstats.html
More file actions
151 lines (141 loc) · 4.19 KB
/
stats.html
File metadata and controls
151 lines (141 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Statistics Study Guide - Study Hub</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f4f4f4;
}
header {
background: #2d6e7f; /* Dark blue */
color: white;
padding: 30px 20px;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header h1 {
font-size: 2.5em;
}
nav {
background: #1e4f5b; /* Darker blue */
padding: 15px;
text-align: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-size: 1.2em;
transition: color 0.3s ease;
}
nav a:hover {
color: #4CAF50; /* Greenish hover effect */
}
.container {
flex: 1;
padding: 40px;
max-width: 900px;
margin: auto;
background: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
h2 {
margin-bottom: 30px;
font-size: 2.2em;
color: #2d6e7f;
text-align: center;
}
p {
font-size: 1.1em;
line-height: 1.6;
color: #333;
margin-bottom: 30px;
}
.section {
margin-bottom: 20px;
}
a.button {
display: inline-block;
background-color: #2d6e7f; /* Dark blue */
color: white;
text-align: center;
padding: 15px 25px;
width: 100%;
font-size: 1.2em;
cursor: pointer;
border-radius: 8px;
text-decoration: none;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
transition: background-color 0.3s, transform 0.2s;
}
a.button:hover {
background-color: #1e4f5b; /* Darker blue */
transform: translateY(-5px);
}
footer {
background: #333;
color: white;
text-align: center;
padding: 20px;
margin-top: auto;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<header>
<h1>Statistics Study Guide</h1>
</header>
<nav>
<a href="index.html">Back to Study Guide</a>
<a href="library.html">Library</a>
<a href="notes.html">Notes</a>
<a href="feedback.html">Feedback</a>
</nav>
<div class="container">
<h2>Statistics Topics</h2>
<p>Statistics is a branch of mathematics dealing with data collection, analysis, interpretation, and presentation. Below, you will find key topics covered in Statistics.</p>
<!-- Subtopics as buttons -->
<div class="section">
<a href="mean.html" class="button">Mean</a>
</div>
<div class="section">
<a href="median.html" class="button">Median</a>
</div>
<div class="section">
<a href="mode.html" class="button">Mode</a>
</div>
<div class="section">
<a href="range.html" class="button">Range</a>
</div>
<div class="section">
<a href="standard-deviation.html" class="button">Standard Deviation</a>
</div>
<div class="section">
<a href="probability.html" class="button">Probability</a>
</div>
<div class="section">
<a href="correlation.html" class="button">Correlation</a>
</div>
<div class="section">
<a href="regression.html" class="button">Regression</a>
</div>
</div>
<footer>
<p>© 2025 Study Hub. All rights reserved.</p>
</footer>
</body>
</html>