-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
280 lines (258 loc) · 14.4 KB
/
Copy pathabout.html
File metadata and controls
280 lines (258 loc) · 14.4 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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About the Periodic Table</title>
<!-- Favicon -->
<link rel="icon" href="/Periodic Table/images/logo.png" sizes="196x196" type="image/png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Optional: Custom Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;700&display=swap">
<style>
body {
font-family: "Noto Sans", sans-serif;
margin: 0;
padding-top: 70px; /* Space for fixed navbar */
}
.hero-section {
background: linear-gradient(45deg, #e6f7ff, #f5fcff);
padding: 3rem;
text-align: center;
}
.hero-section h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.hero-section img {
max-width: 200px;
border-radius: 50%;
}
.section-title {
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: 700;
}
.responsive-image {
max-width: 100%;
height: auto;
}
footer {
background: #343a40;
color: #fff;
padding: 1.5rem 0;
text-align: center;
}
footer a {
color: #fff;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
#scrollspy-nav {
position: sticky;
top: 70px;
height: calc(100vh - 70px);
overflow-y: auto;
border-right: 1px solid #ddd;
padding-right: 1rem;
}
</style>
</head>
<body data-bs-spy="scroll" data-bs-target="#scrollspy-nav" data-bs-offset="70" tabindex="0">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="images/logo.png" alt="Logo" width="30" height="30" class="d-inline-block align-text-top">
Element Explorer
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/Periodic Table/docs/periodic_table.pdf" target="_blank">Periodic Table</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<div class="hero-section">
<h1>The Periodic Table: A Masterpiece of Chemistry</h1>
<p class="lead">Discover the history, structure, and significance of the periodic table.</p>
<img src="images/dmitri_mendeleev.jpg" alt="Dmitri Mendeleev">
<p class="mt-3">Dmitri Mendeleev, the creator of the modern periodic table.</p>
</div>
<!-- Main Content -->
<main class="container my-4">
<div class="row">
<!-- Scrollspy Navigation -->
<nav id="scrollspy-nav" class="col-md-3 d-none d-md-block bg-light">
<ul class="nav flex-column">
<li class="nav-item">
<a class="nav-link" href="#historical-background">Historical Background</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#structure">Structure of the Periodic Table</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#categories">Groups and Categories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#importance">Importance of the Periodic Table</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#future">Future of the Periodic Table</a>
</li>
</ul>
</nav>
<!-- Historical Background -->
<main class="col-md-9 ms-sm-auto">
<section id="historical-background" >
<h2 class="section-title">Historical Background</h2>
<p>The periodic table was created by Dmitri Mendeleev in 1869. Mendeleev's genius lay in organizing elements based on their atomic mass and leaving spaces for elements yet to be discovered. His predictions about the properties of undiscovered elements were remarkably accurate, cementing the periodic table as a cornerstone of chemistry.</p>
<img src="images/mendeleev_table.png" alt="Mendeleev's Periodic Table" class="responsive-image">
<p class="mt-2 text-center">Mendeleev's first periodic table (1869).</p>
</section>
<!-- Structure of the Periodic Table -->
<section id="structure">
<h2 class="section-title">Structure of the Periodic Table</h2>
<p>The periodic table is divided into rows called <strong>periods</strong> and columns called <strong>groups</strong>. Each element is arranged based on its atomic number, which represents the number of protons in its nucleus.</p>
<img src="images/periodic_table_structure.png" alt="Periodic Table Structure" class="responsive-image">
<ul>
<li><strong>Periods:</strong> Horizontal rows (1 to 7) represent the principal energy levels.</li>
<li><strong>Groups:</strong> Vertical columns (1 to 18) group elements with similar chemical properties.</li>
</ul>
</section>
<!-- Groups and Categories -->
<section id="categories">
<h2 class="section-title">Groups and Categories</h2>
<p>The periodic table is divided into categories based on shared chemical and physical properties. Below is a detailed explanation of each category:</p>
<h3 class="mt-4">1. Alkali Metals (Group 1)</h3>
<p>
Alkali metals are highly reactive metals found in Group 1 of the periodic table. They include lithium (Li), sodium (Na), potassium (K), rubidium (Rb), cesium (Cs), and francium (Fr).
</p>
<ul>
<li><strong>Properties:</strong> Soft, low melting points, and highly reactive with water.</li>
<li><strong>Applications:</strong> Lithium batteries, sodium-vapor lamps, and potassium fertilizers.</li>
</ul>
<img src="images/alkali_metals.png" alt="Alkali Metals" class="responsive-image">
<h3 class="mt-4">2. Alkaline Earth Metals (Group 2)</h3>
<p>
Alkaline earth metals are less reactive than alkali metals and are found in Group 2. This group includes beryllium (Be), magnesium (Mg), calcium (Ca), strontium (Sr), barium (Ba), and radium (Ra).
</p>
<ul>
<li><strong>Properties:</strong> Harder than alkali metals, high melting points, and reactive but less so than Group 1 elements.</li>
<li><strong>Applications:</strong> Magnesium alloys, calcium supplements, and strontium for fireworks.</li>
</ul>
<img src="images/alkaline_earth_metals.png" alt="Alkaline Earth Metals" class="responsive-image">
<h3 class="mt-4">3. Transition Metals (Groups 3-12)</h3>
<p>
Transition metals are found in the center of the periodic table and include elements like iron (Fe), copper (Cu), and gold (Au). They are known for their ability to form colorful compounds.
</p>
<ul>
<li><strong>Properties:</strong> High melting points, excellent conductors of electricity, and form multiple oxidation states.</li>
<li><strong>Applications:</strong> Construction materials, electrical wiring, and catalysts in chemical reactions.</li>
</ul>
<img src="images/transition_metals.png" alt="Transition Metals" class="responsive-image">
<h3 class="mt-4">4. Post-Transition Metals</h3>
<p>
Post-transition metals include aluminum (Al), gallium (Ga), indium (In), tin (Sn), thallium (Tl), lead (Pb), and bismuth (Bi). These elements have properties between transition metals and metalloids.
</p>
<ul>
<li><strong>Properties:</strong> Malleable, lower melting points than transition metals, and less conductive.</li>
<li><strong>Applications:</strong> Aluminum for packaging, lead-acid batteries, and bismuth in medical applications.</li>
</ul>
<img src="images/post_transition_metals.png" alt="Post-Transition Metals" class="responsive-image">
<h3 class="mt-4">5. Metalloids</h3>
<p>
Metalloids, or semimetals, have properties of both metals and nonmetals. Examples include boron (B), silicon (Si), and arsenic (As).
</p>
<ul>
<li><strong>Properties:</strong> Semi-conductive, brittle, and exhibit a mix of metallic and nonmetallic behavior.</li>
<li><strong>Applications:</strong> Silicon in electronics, boron in glass manufacturing, and arsenic in pesticides.</li>
</ul>
<img src="images/metalloids.png" alt="Metalloids" class="responsive-image">
<h3 class="mt-4">6. Nonmetals</h3>
<p>
Nonmetals are found on the right side of the periodic table and include elements like oxygen (O), nitrogen (N), and sulfur (S). These elements are essential for life.
</p>
<ul>
<li><strong>Properties:</strong> Poor conductors, brittle when solid, and form acidic oxides.</li>
<li><strong>Applications:</strong> Breathing oxygen, nitrogen fertilizers, and sulfur in rubber production.</li>
</ul>
<img src="images/nonmetals.png" alt="Nonmetals" class="responsive-image">
<h3 class="mt-4">7. Halogens (Group 17)</h3>
<p>
Halogens are highly reactive nonmetals found in Group 17, including fluorine (F), chlorine (Cl), bromine (Br), and iodine (I). They readily form salts with metals.
</p>
<ul>
<li><strong>Properties:</strong> Highly electronegative, form salts with metals, and exist in various states (gas, liquid, solid).</li>
<li><strong>Applications:</strong> Fluoride in toothpaste, chlorine for water purification, and iodine for medical antiseptics.</li>
</ul>
<img src="images/halogens.png" alt="Halogens" class="responsive-image">
<h3 class="mt-4">8. Noble Gases (Group 18)</h3>
<p>
Noble gases are inert gases in Group 18, including helium (He), neon (Ne), and argon (Ar). They are chemically stable due to their full valence shells.
</p>
<ul>
<li><strong>Properties:</strong> Colorless, odorless, and nonreactive under normal conditions.</li>
<li><strong>Applications:</strong> Helium in balloons, neon lighting, and argon for welding.</li>
</ul>
<img src="images/noble_gases.png" alt="Noble Gases" class="responsive-image">
</section>
<!-- Importance of the Periodic Table -->
<section id="importance">
<h2 class="section-title">Importance of the Periodic Table</h2>
<p>The periodic table provides a framework for understanding the relationships between chemical properties and atomic structure. It is a vital tool for predicting the behavior of elements and their compounds, advancing fields like chemistry, physics, and material science.</p>
</section>
<!-- Future of the Periodic Table -->
<section id="future">
<h2 class="section-title">Future of the Periodic Table</h2>
<p>As scientists continue to discover new elements and explore the properties of superheavy elements, the periodic table evolves. It remains a dynamic and essential resource in scientific discovery.</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/Extended_periodic_table" style="text-decoration: none;">Wikipedia : Extended Periodic Table</a></li>
</ul>
</section>
</main>
</div>
</main>
<!-- Footer -->
<footer>
<div class="container">
<p class="mb-2">© 2025 Element Explorer</p>
<p>Created by:</p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/ankushgupta18/" target="_blank">Ankush Gupta</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/het-gohil/" target="_blank">Het Gohil</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/shlok-jani-a5a98732b/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">Shlok Jani</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/dhwani-parmar-6a7bb1346/?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=android_app" target="_blank">Dhwani Parmar</a>
</li>
<li class="list-inline-item">
<a href="https://www.linkedin.com/in/siddhi-brahmbhatt-482590347?utm_source=share&utm_campaign=share_via&utm_content=profile&utm_medium=ios_app" target="_blank">Siddhi Brahmabhatt</a>
</li>
</ul>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>