-
Notifications
You must be signed in to change notification settings - Fork 0
/
touchTest.html
707 lines (673 loc) · 41 KB
/
touchTest.html
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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
<!DOCTYPE html>
<html lang="en">
<head>
<script>
function showElementInfo(elementSymbol) {
var elementInfo = ""; // Add descriptions for each element here
switch (elementSymbol) {
case "H":
elementInfo = "Hydrogen: The lightest element and the most abundant in the universe.";
break;
case "He":
elementInfo = "Helium: A noble gas used in balloons and as a cooling agent.";
break;
case "Li":
elementInfo = "Lithium: Used in batteries and for psychiatric medication.";
break;
case "Be":
elementInfo = "Beryllium: A lightweight metal used in various industrial applications.";
break;
case "B":
elementInfo = "Boron: Used in the manufacture of glass and as a trace mineral for health.";
break;
case "C":
elementInfo = "Carbon: The basis of life and the building block of organic compounds.";
break;
case "N":
elementInfo = "Nitrogen: A vital element in the Earth's atmosphere and essential for life.";
break;
case "O":
elementInfo = "Oxygen: Necessary for respiration and supports combustion.";
break;
case "F":
elementInfo = "Fluorine: Used in toothpaste and for various industrial applications.";
break;
case "Ne":
elementInfo = "Neon: A noble gas used in neon signs and lighting.";
break;
case "Na":
elementInfo = "Sodium: Essential for health and used in various chemical processes.";
break;
case "Mg":
elementInfo = "Magnesium: Important for biological processes and used in alloys.";
break;
case "Al":
elementInfo = "Aluminum: A lightweight metal used in construction and aerospace.";
break;
case "Si":
elementInfo = "Silicon: Used in semiconductors and for various industrial applications.";
break;
case "P":
elementInfo = "Phosphorus: Essential for life and used in fertilizers.";
break;
case "S":
elementInfo = "Sulfur: Used in various chemical processes and compounds.";
break;
case "Cl":
elementInfo = "Chlorine: Used for disinfection and in the production of PVC.";
break;
case "Ar":
elementInfo = "Argon: A noble gas used in welding and as an inert atmosphere.";
break;
case "K":
elementInfo = "Potassium: Essential for health and used in fertilizers.";
break;
case "Ca":
elementInfo = "Calcium: Important for bone health and used in various industries.";
break;
case "Sc":
elementInfo = "Scandium: Used in the aerospace industry and for lighting.";
break;
case "Ti":
elementInfo = "Titanium: Known for its strength and used in aerospace and medical implants.";
break;
case "V":
elementInfo = "Vanadium: Used in steel alloys and in the aerospace industry.";
break;
case "Cr":
elementInfo = "Chromium: Used in stainless steel and for corrosion resistance.";
break;
case "Mn":
elementInfo = "Manganese: Used in steel production and for batteries.";
break;
case "Fe":
elementInfo = "Iron: Essential for health and used in construction and manufacturing.";
break;
case "Co":
elementInfo = "Cobalt: Used in rechargeable batteries and for medical applications.";
break;
case "Ni":
elementInfo = "Nickel: Used in coins, stainless steel, and for various applications.";
break;
case "Cu":
elementInfo = "Copper: Important for electrical conductivity and used in wiring.";
break;
case "Zn":
elementInfo = "Zinc: Used in galvanization and for dietary supplements.";
break;
case "Ga":
elementInfo = "Gallium: Used in semiconductors and for medical applications.";
break;
case "Ge":
elementInfo = "Germanium: Used in electronics and as a semiconductor.";
break;
case "As":
elementInfo = "Arsenic: Used in the semiconductor industry and for various applications.";
break;
case "Se":
elementInfo = "Selenium: Used in electronics and for dietary supplements.";
break;
case "Br":
elementInfo = "Bromine: Used in flame retardants and for water treatment.";
break;
case "Kr":
elementInfo = "Krypton: A noble gas used in lasers and lighting.";
break;
case "Rb":
elementInfo = "Rubidium: Used in research and for atomic clocks.";
break;
case "Sr":
elementInfo = "Strontium: Used in fireworks and for health supplements.";
break;
case "Y":
elementInfo = "Yttrium: Used in electronics and for making phosphors.";
break;
case "Zr":
elementInfo = "Zirconium: Used in nuclear reactors and for alloys.";
break;
case "Nb":
elementInfo = "Niobium: Used in superconductors and for aerospace applications.";
break;
case "Mo":
elementInfo = "Molybdenum: Used in steel alloys and for various industrial purposes.";
break;
case "Tc":
elementInfo = "Technetium: A synthetic element used in medical imaging.";
break;
case "Ru":
elementInfo = "Ruthenium: Used in electronics and as a catalyst.";
break;
case "Rh":
elementInfo = "Rhodium: Used in catalytic converters and for jewelry.";
break;
case "Pd":
elementInfo = "Palladium: Used in catalytic converters and for various applications.";
break;
case "Ag":
elementInfo = "Silver: Valued for its beauty and used in jewelry, coins, and photography.";
break;
case "Cd":
elementInfo = "Cadmium: Used in batteries, pigments, and for corrosion protection.";
break;
case "In":
elementInfo = "Indium: Used in electronics and for making transparent conductive coatings.";
break;
case "Sn":
elementInfo = "Tin: Used in soldering, cans, and for various applications.";
break;
case "Sb":
elementInfo = "Antimony: Used in flame retardants and for various applications.";
break;
case "Te":
elementInfo = "Tellurium: Used in semiconductors and for solar panels.";
break;
case "I":
elementInfo = "Iodine: Used in medical applications and for sanitation.";
break;
case "Xe":
elementInfo = "Xenon: A noble gas used in medical imaging and lighting.";
break;
case "Cs":
elementInfo = "Cesium: Used in atomic clocks and for drilling fluids.";
break;
case "Ba":
elementInfo = "Barium: Used in drilling fluids, X-ray imaging, and fireworks.";
break;
case "La":
elementInfo = "Lanthanum: Used in catalysts, carbon lighting, and for various applications.";
break;
case "Ce":
elementInfo = "Cerium: Used in catalytic converters, glass polishing, and for alloys.";
break;
case "Pr":
elementInfo = "Praseodymium: Used in rare earth magnets and for various applications.";
break;
case "Nd":
elementInfo = "Neodymium: Used in rare earth magnets and for laser applications.";
break;
case "Pm":
elementInfo = "Promethium: A synthetic element used in nuclear batteries and research.";
break;
case "Sm":
elementInfo = "Samarium: Used in magnets, catalysts, and for nuclear reactors.";
break;
case "Eu":
elementInfo = "Europium: Used in phosphors for color TV screens and fluorescent lamps.";
break;
case "Gd":
elementInfo = "Gadolinium: Used in contrast agents for MRI and for neutron capture therapy.";
break;
case "Tb":
elementInfo = "Terbium: Used in phosphors for color TV screens and fluorescent lamps.";
break;
case "Dy":
elementInfo = "Dysprosium: Used in rare earth magnets and for nuclear reactors.";
break;
case "Ho":
elementInfo = "Holmium: Used in nuclear control rods and for various applications.";
break;
case "Er":
elementInfo = "Erbium: Used in fiber optic communications and for various applications.";
break;
case "Tm":
elementInfo = "Thulium: Used in X-ray machines and for lasers.";
break;
case "Yb":
elementInfo = "Ytterbium: Used in lasers and for various applications.";
break;
case "Lu":
elementInfo = "Lutetium: Used in medical imaging and for various applications.";
break;
case "Hf":
elementInfo = "Hafnium: Used in nuclear reactors and for superalloys.";
break;
case "Ta":
elementInfo = "Tantalum: Used in electronics and for making capacitors.";
break;
case "W":
elementInfo = "Tungsten: Known for its high melting point and used in electrical wires.";
break;
case "Re":
elementInfo = "Rhenium: Used in superalloys and for various industrial applications.";
break;
case "Os":
elementInfo = "Osmium: Known for its density and used in fountain pen tips.";
break;
case "Ir":
elementInfo = "Iridium: Used in spark plugs and for its corrosion resistance.";
break;
case "Pt":
elementInfo = "Platinum: Valued for its beauty and used in jewelry, catalysts, and more.";
break;
case "Au":
elementInfo = "Gold: Valued for its beauty and used in jewelry, coins, and electronics.";
break;
case "Hg":
elementInfo = "Mercury: Used in thermometers, barometers, and for various applications.";
break;
case "Tl":
elementInfo = "Thallium: Used in electronics and for its toxicity in rat poison.";
break;
case "Pb":
elementInfo = "Lead: Used in batteries, ammunition, and for various industrial applications.";
break;
case "Bi":
elementInfo = "Bismuth: Used in cosmetics and for various industrial applications.";
break;
case "Po":
elementInfo = "Polonium: A highly radioactive element with limited practical applications.";
break;
case "At":
elementInfo = "Astatine: A highly radioactive element with limited practical applications.";
break;
case "Rn":
elementInfo = "Radon: A radioactive noble gas found in the Earth's crust.";
break;
case "Fr":
elementInfo = "Francium: A highly radioactive element with limited practical applications.";
break;
case "Ra":
elementInfo = "Radium: Radioactive and used in early glow-in-the-dark paints.";
break;
case "Ac":
elementInfo = "Actinium: A radioactive element with limited practical applications.";
break;
case "Th":
elementInfo = "Thorium: Used in nuclear reactors and for making mantles in gas lamps.";
break;
case "Pa":
elementInfo = "Protactinium: A highly radioactive element with limited practical applications.";
break;
case "U":
elementInfo = "Uranium: Used in nuclear reactors and for nuclear weapons.";
break;
case "Np":
elementInfo = "Neptunium: A synthetic element used in nuclear reactors.";
break;
case "Pu":
elementInfo = "Plutonium: Used in nuclear weapons and nuclear reactors.";
break;
case "Am":
elementInfo = "Americium: Used in smoke detectors and for research purposes.";
break;
case "Cm":
elementInfo = "Curium: A synthetic element used in research and nuclear reactors.";
break;
case "Bk":
elementInfo = "Berkelium: A synthetic element used in research and nuclear reactors.";
break;
case "Cf":
elementInfo = "Californium: A synthetic element used in research and nuclear reactors.";
break;
case "Es":
elementInfo = "Einsteinium: A synthetic element used in research.";
break;
case "Fm":
elementInfo = "Fermium: A synthetic element used in research.";
break;
case "Md":
elementInfo = "Mendelevium: A synthetic element used in research.";
break;
case "No":
elementInfo = "Nobelium: A synthetic element used in research.";
break;
case "Lr":
elementInfo = "Lawrencium: A synthetic element used in research.";
break;
default:
elementInfo = "Element information not available.";
}
alert(elementInfo);
}
</script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome!</title>
</head>
<body style="background-color: #2dc79e;">
<h1 style="
color: #ce6565;
width: fit-content;
border-radius: 54px;
border: 3px green solid;
background: black;
">Welcome To The Interactive Peridoic Table</h1>
<p>Click on an element to see more information:</p>
<p>
<table>
<tr>
<th style="text-align: center; font-size: 50px; width: 1020px; height: 30px; background-color: #1bb5ed;">The Periodic Table</th>
</tr>
</table>
<table>
<tr>
<td onclick="showElementInfo('H');" style="width: 50px; height: 50px; background-color: #dd8484; text-align: center; border: 1px solid black;">1<br>
H</td>
<!-- adding 16 empty cells -->
<td style = "empty-cells: hide; width: 50px; height: 50px;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<!-- <td style = "empty-cells: hide;"></td> -->
<td onclick="showElementInfo('He');" style="color: rgb(28, 126, 6);background-color: #bbc8e6;width: 50px; height: 50px;text-align: center; border: 1px solid black;">2<br>
He </td>
</tr>
<!-- New row -->
<tr>
<td onclick="showElementInfo('Li');" style= "background-color: #e99bd8; width: 50px; height: 50px;text-align: center; border: 1px solid black;">3<br>
Li </td>
<td style= "background-color: #9bc7e9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">4<br>
Be </td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td onclick="showElementInfo('B');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center;border: 1px solid black;">5<br>
B </td>
<td onclick="showElementInfo('C');" style= "background-color: #f1845f; width: 50px; height: 50px;text-align: center;border: 1px solid black;">6<br>
C </td>
<td onclick="showElementInfo('N');" style= "color: rgb(28, 126, 6);background-color: #f1845f; width: 50px; height: 50px;text-align: center;border: 1px solid black;">7<br>
N </td>
<td onclick="showElementInfo('O');" style= "color: rgb(28, 126, 6);background-color: #f1845f; width: 50px; height: 50px;text-align: center;border: 1px solid black;">8<br>
O </td>
<td onclick="showElementInfo('F');" style= "color: rgb(28, 126, 6);background-color: #f5f5d9; width: 50px; height: 50px;text-align: center;border: 1px solid black;">9<br>
F </td>
<td onclick="showElementInfo('Ne');" style= "color: rgb(28, 126, 6);background-color: #bbc8e6; width: 50px; height: 50px;text-align: center;border: 1px solid black;">10<br>
Ne </td>
</tr>
<!-- New row -->
<tr>
<td onclick="showElementInfo('Na');" style= "background-color: #e99bd8; width: 50px; height: 50px;text-align: center; border: 1px solid black;">11<br>
Na </td>
<td onclick="showElementInfo('Mg');" style= "background-color: #9bc7e9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">12<br>
Mg </td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td onclick="showElementInfo('Al');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center;border: 1px solid black;">13<br>
Al </td>
<td onclick="showElementInfo('Si');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center;border: 1px solid black;">14<br>
Si </td>
<td onclick="showElementInfo('P');" style= "background-color: #f1845f; width: 50px; height: 50px;text-align: center;border: 1px solid black;">15<br>
P </td>
<td onclick="showElementInfo('S');" style= "background-color: #f1845f; width: 50px; height: 50px;text-align: center;border: 1px solid black;">16<br>
S </td>
<td onclick="showElementInfo('Cl');" style= "color: rgb(28, 126, 6);background-color: #f5f5d9; width: 50px; height: 50px;text-align: center;border: 1px solid black;">17<br>
Cl </td>
<td onclick="showElementInfo('Ar');" style= "color: rgb(28, 126, 6);background-color: #bbc8e6; width: 50px; height: 50px;text-align: center;border: 1px solid black;">18<br>
Ar </td>
</tr>
<!-- New row -->
<tr>
<td onclick="showElementInfo('K');" style= "background-color: #e99bd8; width: 50px; height: 50px;text-align: center; border: 1px solid black;">19<br>
K </td>
<td onclick="showElementInfo('Ca');" style= "background-color: #9bc7e9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">20<br>
Ca </td>
<td onclick="showElementInfo('Sc');" style= "background-color: #eae7a9; width: 80px; height: 50px;text-align: center; border: 1px solid black;">21<br>
Sc </td>
<td onclick="showElementInfo('Ti');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">22<br>
Ti </td>
<td onclick="showElementInfo('V');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">23<br>
V </td>
<td onclick="showElementInfo('Cr');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">24<br>
Cr </td>
<td onclick="showElementInfo('Mn');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">25<br>
Mn </td>
<td onclick="showElementInfo('Fe');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">26<br>
Fe </td>
<td onclick="showElementInfo('Co');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">27<br>
Co </td>
<td onclick="showElementInfo('Ni');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">28<br>
Ni </td>
<td onclick="showElementInfo('Cu');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">29<br>
Cu </td>
<td onclick="showElementInfo('Zn');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">30<br>
Zn </td>
<td onclick="showElementInfo('Ga');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center;border: 1px solid black;">31<br>
Ga </td>
<td onclick="showElementInfo('Ge');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center;border: 1px solid black;">32<br>
Ge </td>
<td onclick="showElementInfo('As');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center;border: 1px solid black;">33<br>
As </td>
<td onclick="showElementInfo('Se');" style= "background-color: #f1845f; width: 50px; height: 50px;text-align: center;border: 1px solid black;">34<br>
Se </td>
<td onclick="showElementInfo('Br');" style= "background-color: #f5f5d9; width: 50px; height: 50px;text-align: center;border: 1px solid black;">35<br>
Br </td>
<td onclick="showElementInfo('Kr');" style= "color: rgb(28, 126, 6);background-color: #bbc8e6; width: 50px; height: 50px;text-align: center;border: 1px solid black;">36<br>
Kr </td>
</tr>
<!-- New row -->
<tr>
<td onclick="showElementInfo('Rb');" style= "background-color: #e99bd8; width: 50px; height: 50px;text-align: center; border: 1px solid black;">37<br>
Rb </td>
<td onclick="showElementInfo('Sr');" style= "background-color: #9bc7e9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">38<br>
Sr </td>
<td onclick="showElementInfo('Y');" style= "background-color: #eae7a9; width: 80px; height: 50px;text-align: center; border: 1px solid black;">39<br>
Y </td>
<td onclick="showElementInfo('Zr');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">40<br>
Zr </td>
<td onclick="showElementInfo('Nb');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">41<br>
Nb </td>
<td onclick="showElementInfo('Mo');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">42<br>
Mo </td>
<td onclick="showElementInfo('Tc');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">43<br>
Tc </td>
<td onclick="showElementInfo('Ru');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">44<br>
Ru </td>
<td onclick="showElementInfo('Rh');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">45<br>
Rh </td>
<td onclick="showElementInfo('Pd');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">46<br>
Pd </td>
<td onclick="showElementInfo('Ag');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">47<br>
Ag </td>
<td onclick="showElementInfo('Cd');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">48<br>
Cd </td>
<td onclick="showElementInfo('In');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center;border: 1px solid black;">49<br>
In </td>
<td onclick="showElementInfo('Sn');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center;border: 1px solid black;">50<br>
Sn </td>
<td onclick="showElementInfo('Sb');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center;border: 1px solid black;">51<br>
Sb </td>
<td onclick="showElementInfo('Te');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center;border: 1px solid black;">52<br>
Te </td>
<td onclick="showElementInfo('I');" style= "background-color: #f5f5d9; width: 50px; height: 50px;text-align: center;border: 1px solid black;">53<br>
I </td>
<td onclick="showElementInfo('Xe');" style= "color: rgb(28, 126, 6);background-color: #bbc8e6; width: 50px; height: 50px;text-align: center;border: 1px solid black;">54<br>
Xe </td>
</tr>
<!-- New row -->
<tr>
<td onclick="showElementInfo('Cs');" style= "background-color: #e99bd8; width: 50px; height: 50px;text-align: center; border: 1px solid black;">55<br>
Cs </td>
<td onclick="showElementInfo('Ba');" style= "background-color: #9bc7e9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">56<br>
Ba </td>
<td style= "background-color: #f9ddf5; width: 80px; height: 50px;text-align: center; border: 1px solid black;">57-71<br>
</td>
<td onclick="showElementInfo('Hf');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">72<br>
Hf </td>
<td onclick="showElementInfo('Ta');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">73<br>
Ta </td>
<td onclick="showElementInfo('W');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">74<br>
W </td>
<td onclick="showElementInfo('Re');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">75<br>
Re </td>
<td onclick="showElementInfo('Os');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">76<br>
Os </td>
<td onclick="showElementInfo('Ir');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">77<br>
Ir </td>
<td onclick="showElementInfo('Pt');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">78<br>
Pt </td>
<td onclick="showElementInfo('Au');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">79<br>
Au </td>
<td onclick="showElementInfo('Hg');" style= "background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">80<br>
Hg </td>
<td onclick="showElementInfo('Tl');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center; border: 1px solid black;">81<br>
Tl </td>
<td onclick="showElementInfo('Pb');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center; border: 1px solid black;">82<br>
Pb </td>
<td onclick="showElementInfo('Bi');" style= "background-color: #b1f38b; width: 50px; height: 50px;text-align: center; border: 1px solid black;">83<br>
Bi </td>
<td onclick="showElementInfo('Po');" style= "background-color: #bc6406; width: 50px; height: 50px;text-align: center; border: 1px solid black;">84<br>
Po </td>
<td onclick="showElementInfo('At');" style= "background-color: #f5f5d9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">85<br>
At </td>
<td onclick="showElementInfo('Rn');" style= "color: rgb(28, 126, 6);background-color: #bbc8e6; width: 50px; height: 50px;text-align: center; border: 1px solid black;">86<br>
Rn </td>
</tr>
<!-- New row -->
<tr>
<td onclick="showElementInfo('Fr');" style= "background-color: #e99bd8; width: 50px; height: 50px;text-align: center; border: 1px solid black;">87<br>
Fr </td>
<td onclick="showElementInfo('Ra');" style= "background-color: #9bc7e9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">88<br>
Ra </td>
<td style= "background-color: #f9ddf5; width: 80px; height: 50px;text-align: center; border: 1px solid black;">89-103<br>
</td>
<td onclick="showElementInfo('Rf');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">104<br>
Rf </td>
<td onclick="showElementInfo('Db');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">105<br>
Db </td>
<td onclick="showElementInfo('Sg');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">106<br>
Sg </td>
<td onclick="showElementInfo('Bh');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">107<br>
Bh </td>
<td onclick="showElementInfo('Hs');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">108<br>
Hs </td>
<td onclick="showElementInfo('Mt');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">109<br>
Mt </td>
<td onclick="showElementInfo('Ds');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">110<br>
Ds </td>
<td onclick="showElementInfo('Rg');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">111<br>
Rg </td>
<td onclick="showElementInfo('Cn');" style= "color: red;background-color: #eae7a9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">112<br>
Cn </td>
<td onclick="showElementInfo('Nh');" style= "color: red;background-color: #fefef9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">113<br>
Nh </td>
<td onclick="showElementInfo('Fl');" style= "color: red;background-color: #fefef9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">114<br>
Fl </td>
<td onclick="showElementInfo('Mc');" style= "color: red;background-color: #fefef9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">115<br>
Mc </td>
<td onclick="showElementInfo('Lv');" style= "color: red;background-color: #fefef9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">116<br>
Lv </td>
<td onclick="showElementInfo('Ts');" style= "color: red;background-color: #fefef9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">117<br>
Ts </td>
<td onclick="showElementInfo('Ar');" style= "color: red;background-color: #fefef9; width: 50px; height: 50px;text-align: center; border: 1px solid black;">118<br>
Ar </td>
</tr>
</table>
<!-- Adding 1 complete row of empty cells here -->
<table>
<tr>
<td style = "empty-cells: hide;width: 50px; height: 50px"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
<td style = "empty-cells: hide;"></td>
</tr>
<!-- New row -->
<tr>
<td style = "empty-cells: hide;width: 50px; height: 50px"></td>
<td style = "empty-cells: hide;width: 50px; height: 50px"></td>
<td onclick="showElementInfo('La');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">57<br>
La </td>
<td onclick="showElementInfo('Ce');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">58<br>
Ce </td>
<td onclick="showElementInfo('Pr');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">59<br>
Pr </td>
<td onclick="showElementInfo('Nd');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">60<br>
Nd </td>
<td onclick="showElementInfo('Pm');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">61<br>
Pm </td>
<td onclick="showElementInfo('Sm');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">62<br>
Sm </td>
<td onclick="showElementInfo('Eu');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">63<br>
Eu </td>
<td onclick="showElementInfo('Gd');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">64<br>
Gd </td>
<td onclick="showElementInfo('Tb');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">65<br>
Tb </td>
<td onclick="showElementInfo('Dy');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">66<br>
Dy </td>
<td onclick="showElementInfo('Ho');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">67<br>
Ho </td>
<td onclick="showElementInfo('Er');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">68<br>
Er </td>
<td onclick="showElementInfo('Tm');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">69<br>
Tm </td>
<td onclick="showElementInfo('Yb');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">70<br>
Yb </td>
<td onclick="showElementInfo('Lu');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">71<br>
Lu </td>
</tr>
<!-- New row -->
<tr>
<td style = "empty-cells: hide;width: 50px; height: 50px"></td>
<td style = "empty-cells: hide;width: 50px; height: 50px"></td>
<td onclick="showElementInfo('Ac');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">89<br>
Ac </td>
<td onclick="showElementInfo('Th');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">90<br>
Th </td>
<td onclick="showElementInfo('Pa');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">91<br>
Pa </td>
<td onclick="showElementInfo('U');" style= "background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">92<br>
U </td>
<td onclick="showElementInfo('Np');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">93<br>
Np </td>
<td onclick="showElementInfo('Pu');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">94<br>
Pu </td>
<td onclick="showElementInfo('Am');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">95<br>
Am </td>
<td onclick="showElementInfo('Cm');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">96<br>
Cm </td>
<td onclick="showElementInfo('Bk');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">97<br>
Bk </td>
<td onclick="showElementInfo('Cf');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">98<br>
Cf </td>
<td onclick="showElementInfo('Es');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">99<br>
Es </td>
<td onclick="showElementInfo('Fm');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">100<br>
Fm </td>
<td onclick="showElementInfo('Md');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">101<br>
Md </td>
<td onclick="showElementInfo('No');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">102<br>
No </td>
<td onclick="showElementInfo('Lr');" style= "color: red;background-color: #f9ddf5; width: 50px; height: 50px;text-align: center; border: 1px solid black;">103<br>
Lr </td>
</tr>
</table>
</html>