-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeometry.html
More file actions
112 lines (109 loc) · 3.25 KB
/
geometry.html
File metadata and controls
112 lines (109 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Geometry - Algebra Study Guide</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<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: #f9f9f9;
color: #333;
opacity: 0;
animation: fadeIn 1s forwards;
}
header {
background: #2d6e7f; /* Dark blue */
color: white;
padding: 20px;
text-align: center;
border-bottom: 5px solid #1e4f5b; /* Darker blue */
}
nav {
background: #1e4f5b; /* Even darker blue */
padding: 10px;
text-align: center;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-size: 16px;
}
.container {
flex: 1;
padding: 40px;
max-width: 900px;
margin: auto;
}
h2 {
font-size: 2.2em;
margin-bottom: 15px;
color: #2d6e7f; /* Dark blue */
text-align: center;
animation: fadeIn 1s ease-in-out;
}
.section-button {
display: inline-block;
background-color: #1e4f5b; /* Dark blue */
color: white;
padding: 20px 30px;
border-radius: 5px;
text-decoration: none;
font-size: 1.2em;
text-align: center;
margin: 15px;
width: 100%;
transition: background-color 0.3s;
animation: fadeIn 2s ease-in-out;
}
.section-button:hover {
background-color: #2d6e7f; /* Lighter blue */
}
footer {
background: #333;
color: white;
text-align: center;
padding: 15px;
}
/* Keyframe Animations */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style>
</head>
<body>
<header>
<h1>Geometry - Mathematics Study Guide</h1>
</header>
<nav>
<a href="math.html">Back to Mathematics</a>
<a href="library.html">Back to Study Guide</a>
</nav>
<div class="container">
<h2>Explore Geometry Concepts</h2>
<a href="shapes.html" class="section-button">Shapes and Properties</a>
<a href="angles.html" class="section-button">Angles and Their Types</a>
<a href="perimeter-area.html" class="section-button">Perimeter and Area</a>
<a href="volume.html" class="section-button">Volume and Surface Area</a>
<a href="coordinate-geometry.html" class="section-button">Coordinate Geometry</a>
</div>
<footer>
<p>© 2025 Study Hub. All rights reserved.</p>
</footer>
</body>
</html>