Skip to content

Commit 4d42ac3

Browse files
committed
Update project details, README, and full file structure
1 parent 9a549d1 commit 4d42ac3

27 files changed

Lines changed: 3453 additions & 2925 deletions

README.md

19.2 KB

🖥️ Computer Parts Map

An interactive, educational web encyclopedia that maps and explains every major computer hardware component — from CPUs and GPUs to routers, scanners, and projectors.

GitHub Pages GitHub Repo HTML5 CSS3 JavaScript


🌐 Links

Resource URL
🔴 Live Website https://tcode-motion.github.io/computer-part-map/
📁 GitHub Repository https://github.com/Tcode-Motion/computer-part-map/

📖 About

Computer Parts Map is a pure HTML/CSS/JavaScript static website that serves as a beginner-friendly yet comprehensive reference for all major computer hardware components. Each component has its own dedicated page with detailed explanations, images, specifications, use cases, and modern advancements.

Perfect for:

  • 🎓 Students learning computer hardware
  • 🔧 PC builders looking for quick references
  • 👨‍🏫 Teachers and educators
  • 🧠 Anyone curious about what's inside a computer

✨ Features

  • 📚 19 Dedicated Component Pages — each with detailed content, images, and explanations
  • 🧭 Categorized Navigation Bar — hover-activated dropdown menus for 6 hardware categories
  • 🌙 Dark Mode Toggle — fixed button that switches the entire site to dark mode
  • Animated Loading Skeleton — Anime.js powered loader on every page
  • 🎞️ Smooth AnimationsfadeIn animations, hover zoom effects, and transition effects throughout
  • 📱 Responsive Layout — works across different screen sizes
  • 🔐 AES-GCM Encryption Demo — uses the Web Crypto API in script.js (educational demo)
  • 🖼️ Rich Image Library — 45 hardware images across all component pages

🗂️ Hardware Categories

Category Components
⌨️ Input Devices Keyboard, Mouse, Scanner, Microphone
🖥️ Output Devices Monitor, Printer, Speakers, Projector
⚙️ Main Components CPU, GPU, RAM, HDD, SSD, USB Flash Drive, Graphics Card
🔋 Power Supply Power Supply Unit (PSU), Battery
🌐 Networking Network Interface Card (NIC), Wi-Fi Adapter, Router
🔊 Audio Sound Card, Graphics Card (HDMI audio)

🛠️ Tech Stack

Technology Usage
HTML5 Structure of all pages
CSS3 Styling, animations, dark mode, responsive design
Vanilla JavaScript Navbar behavior, dark mode toggle, smooth scroll, animations
Anime.js v3.2.1 Loading skeleton animation (CDN)
Web Crypto API AES-GCM encryption demo (built-in browser API)

📁 File Map

computer-part-map/
│
├── index.html                  # Home page — overview of all 6 categories
│
├── 📄 Input Device Pages
│   ├── keyboard.html           # Keyboard — types, features, mechanical vs membrane
│   ├── mouse.html              # Mouse — DPI, wireless, ergonomic designs
│   ├── scanner.html            # Scanner — resolution, cloud scanning
│   └── microphone.html         # Microphone — noise canceling, streaming use
│
├── 📄 Output Device Pages
│   ├── monitor.html            # Monitor — HDR, refresh rate, ultra-wide
│   ├── printer.html            # Printer — wireless, eco-friendly ink
│   ├── speakers.html           # Speakers — Bluetooth, smart assistant
│   └── projector.html          # Projector — portable, HD resolution
│
├── 📄 Main Component Pages
│   ├── cpu.html                # CPU — cores, threads, multitasking
│   ├── gpu.html                # GPU — gaming, AI, video editing
│   ├── ram.html                # RAM — speed, RGB, DDR generations
│   ├── hdd.html                # HDD — platters, legacy storage
│   ├── ssd.html                # SSD — NVMe, flash memory, speed
│   ├── usb-flash.html          # USB Flash Drive — portable, encrypted storage
│   └── graphics-card.html      # Graphics Card — ray tracing, AI rendering
│
├── 📄 Power Supply Pages
│   ├── psu.html                # PSU — wattage, modular design, efficiency
│   └── battery.html            # Battery — UPS, laptop batteries, fast charge
│
├── 📄 Networking Pages
│   ├── nic.html                # NIC — gigabit, multi-gigabit speeds
│   ├── wifi-adapter.html       # Wi-Fi Adapter — Wi-Fi 6 support
│   └── router.html             # Router — mesh networking, parental controls
│
├── 📄 Audio Pages
│   └── sound-card.html         # Sound Card — surround sound, high-res audio
│
├── css/                        # Per-component stylesheets + global styles
│   ├── styles.css              # Global styles — navbar, dark mode, animations
│   ├── battery.css
│   ├── cpu.css
│   ├── gpu.css
│   ├── graphics-card.css
│   ├── hdd.css
│   ├── keyboard.css
│   ├── microphone.css
│   ├── monitor.css
│   ├── mouse.css
│   ├── nic.css
│   ├── printer.css
│   ├── projector.css
│   ├── psu.css
│   ├── ram.css
│   ├── router.css
│   ├── scanner.css
│   ├── sound-card.css
│   ├── speakers.css
│   ├── ssd.css
│   ├── usb-flash.css
│   └── wifi-adapter.css
│
├── js/
│   └── script.js               # Sticky navbar, dark mode, smooth scroll, Anime.js loader, AES-GCM demo
│
├── images/                     # Hardware images (45 files)
│   ├── bk.jpg                  # Site background image
│   ├── computer.jpg
│   ├── cpu.jpg
│   ├── gpu.jpg
│   ├── ram.jpg
│   ├── hdd.jpg / harddick drive.jpg
│   ├── ssd.jpg
│   ├── psu.jpg
│   ├── nic.jpg
│   ├── router.jpg
│   ├── keyboard.jpg
│   ├── mouse.jpg
│   ├── scanner.jpg
│   ├── microphone.jpg
│   ├── monitor.jpg / tft-monitor.jpg
│   ├── printer.jpg / plotter-printer.jpg
│   ├── speakers.jpg / speaker.jpg
│   ├── projector.jpg
│   ├── sound-card.jpg
│   ├── graphics-card.jpg
│   ├── usb-flash.jpg / pendrive.jpg
│   ├── wifi-adapter.jpg
│   ├── battery.jpg
│   ├── motherboard.jpg
│   ├── LAN.jpg
│   ├── modem.jpg
│   ├── cache.jpg
│   ├── headphone.jpg
│   ├── webcam.jpg
│   ├── touchpad.jpg
│   ├── sd card.jpg
│   ├── game drive.jpg
│   ├── gaming control.jpg
│   ├── frameless fan.jpg
│   ├── cd dvd rider.jpg
│   ├── USB adopter.jpg
│   ├── windows operating system.jpg
│   └── ... (45 total)
│
├── map                         # Raw site map / route reference file
├── server.py                   # Local Python HTTP server for development
└── README.md                   # This file

🚀 Getting Started

Option 1 — Open Directly

Just open index.html in any modern web browser. No build step or server required.

Option 2 — Local Python Server (Recommended)

A server.py is included for local development:

python server.py

Then visit http://localhost:8000 in your browser.

Option 3 — Live Site

Visit the deployed GitHub Pages site directly: 👉 https://tcode-motion.github.io/computer-part-map/


🧩 How It Works

Navigation

The top navbar has 6 dropdown categories. On hover, a sub-menu appears with links to individual component pages. This is handled by CSS transitions + JS mouseenter/mouseleave events in script.js.

Per-Page Architecture

Each component page (cpu.html, ram.html, etc.) follows the same layout:

  • Shared navbar linking back to all pages
  • A <section> with:
    • Component image
    • Introduction paragraph
    • Detailed specs/features list
    • Modern advancements
  • Per-component CSS in the css/ folder

Animations

  • Loading Skeleton: Every page shows an animated pulsing circle using Anime.js until the page finishes loading, then fades out.
  • FadeIn: CSS @keyframes fadeIn applied to headings and paragraphs.
  • Hover Zoom: List items and cards scale up on hover using CSS transform: scale(1.05).
  • Navbar Scroll: Navbar gets a scrolled class after 50px scroll, handled in JS.

Dark Mode

A floating "Toggle Dark Mode" button (bottom-right) adds/removes the dark-mode class on <body>. All dark mode overrides are defined in styles.css.


📸 Screenshots

Visit the live site for a full visual experience: 🌐 https://tcode-motion.github.io/computer-part-map/


🤝 Contributing

  1. Fork the repository
  2. Create a new branch: git checkout -b feature/new-component
  3. Add your HTML page + CSS in the correct folders
  4. Update index.html navbar with a link to the new page
  5. Submit a Pull Request

📄 License

This project is open-source. Feel free to use, modify, and distribute for educational purposes.


👨‍💻 Author

Tcode Motion


Built with ❤️ using pure HTML, CSS, and JavaScript — no frameworks needed.

about.html

Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>About — Computer Parts Map</title>
7+
<meta name="description" content="About Tcode Motion and the Computer Parts Map project.">
8+
<link rel="stylesheet" href="css/styles.css">
9+
</head>
10+
<body>
11+
12+
<div id="navbar-placeholder"></div>
13+
14+
<!-- HERO -->
15+
<section class="about-hero">
16+
<div class="about-avatar-placeholder">👨‍💻</div>
17+
<h1>Tcode Motion</h1>
18+
<div class="role-tag">🎬 Content Creator &amp; Developer</div>
19+
<p class="about-tagline">Building open-source educational tools and running the Satch Ka Switch YouTube network.</p>
20+
<div class="social-links">
21+
<a href="https://github.com/Tcode-Motion" target="_blank" rel="noopener" class="social-link github">🐙 GitHub</a>
22+
<a href="https://youtube.com/@SatchKaSwitch" target="_blank" rel="noopener" class="social-link youtube">▶️ YouTube</a>
23+
<a href="https://tcode-motion.github.io/computer-part-map/" target="_blank" rel="noopener" class="social-link linkedin" style="background:#10b981">🌐 Live Site</a>
24+
</div>
25+
</section>
26+
27+
<div class="page-content">
28+
29+
<!-- About the Project -->
30+
<div class="content-section">
31+
<h2>📖 About This Project</h2>
32+
<p>
33+
<strong>Computer Parts Map</strong> is a free, open-source educational website that serves as an interactive encyclopedia
34+
for computer hardware. It was built to fill a gap — most hardware guides are either too technical for beginners or
35+
too shallow to be genuinely useful.
36+
</p>
37+
<p>
38+
This project covers <strong>20+ hardware components</strong> across 6 categories, with each page containing
39+
detailed explanations, real product recommendations, spec comparison tables, and historical context.
40+
Everything is built from scratch using pure HTML, CSS, and Vanilla JavaScript — no frameworks, no build tools.
41+
</p>
42+
<div class="did-you-know">
43+
<div class="dyk-label">💡 Project Stats</div>
44+
<p>20+ pages · 6 categories · 45+ images · 100% free and open-source · Hosted on GitHub Pages</p>
45+
</div>
46+
</div>
47+
48+
<!-- Tech Stack -->
49+
<div class="content-section">
50+
<h2>🛠️ Tech Stack</h2>
51+
<table class="spec-table">
52+
<thead>
53+
<tr><th>Technology</th><th>Usage</th><th>Why</th></tr>
54+
</thead>
55+
<tbody>
56+
<tr><td>HTML5</td><td>Page structure</td><td>Semantic, accessible, SEO-friendly</td></tr>
57+
<tr><td>CSS3</td><td>Styling, animations, dark mode, responsive design</td><td>Full control, no dependency on frameworks</td></tr>
58+
<tr><td>Vanilla JavaScript</td><td>Shared layout injection, search, clock, dark mode, animations</td><td>Zero dependencies, fast load</td></tr>
59+
<tr><td>Anime.js v3</td><td>Loading skeleton animation</td><td>Lightweight, smooth animations via CDN</td></tr>
60+
<tr><td>Web Crypto API</td><td>AES-GCM encryption demo</td><td>Built into every modern browser — no library needed</td></tr>
61+
<tr><td>GitHub Pages</td><td>Hosting</td><td>Free, fast, zero backend required</td></tr>
62+
</tbody>
63+
</table>
64+
</div>
65+
66+
<!-- Satch Ka Switch -->
67+
<div class="content-section">
68+
<h2>📺 Satch Ka Switch — YouTube Network</h2>
69+
<p>
70+
<strong>Satch Ka Switch</strong> is an independent YouTube network focused on data-driven, analytical
71+
content about the Indian education system and career conformity. The channel takes a skeptical, root-cause
72+
approach to socio-economic issues — asking uncomfortable questions that mainstream media ignores.
73+
</p>
74+
<p>The network includes a Bengali language channel for deeper, more nuanced discussions.</p>
75+
<div class="related-grid">
76+
<a href="https://youtube.com/@SatchKaSwitch" target="_blank" rel="noopener" class="related-link">▶️ Watch on YouTube</a>
77+
<a href="https://github.com/Tcode-Motion" target="_blank" rel="noopener" class="related-link">🐙 GitHub Projects</a>
78+
<a href="https://tcode-motion.github.io/computer-part-map/" target="_blank" rel="noopener" class="related-link">🌐 Live Website</a>
79+
</div>
80+
</div>
81+
82+
<!-- Skills -->
83+
<div class="content-section">
84+
<h2>⚡ Skills &amp; Interests</h2>
85+
<div class="stat-bar-wrap">
86+
<div class="stat-bar-label"><span>HTML / CSS / JavaScript</span><span>90%</span></div>
87+
<div class="stat-bar"><div class="stat-bar-fill" data-width="90%"></div></div>
88+
</div>
89+
<div class="stat-bar-wrap">
90+
<div class="stat-bar-label"><span>Python</span><span>80%</span></div>
91+
<div class="stat-bar"><div class="stat-bar-fill" data-width="80%"></div></div>
92+
</div>
93+
<div class="stat-bar-wrap">
94+
<div class="stat-bar-label"><span>Three.js / WebGL</span><span>70%</span></div>
95+
<div class="stat-bar"><div class="stat-bar-fill" data-width="70%"></div></div>
96+
</div>
97+
<div class="stat-bar-wrap">
98+
<div class="stat-bar-label"><span>Node.js / PHP</span><span>65%</span></div>
99+
<div class="stat-bar"><div class="stat-bar-fill" data-width="65%"></div></div>
100+
</div>
101+
<div class="stat-bar-wrap">
102+
<div class="stat-bar-label"><span>Android / Termux</span><span>75%</span></div>
103+
<div class="stat-bar"><div class="stat-bar-fill" data-width="75%"></div></div>
104+
</div>
105+
</div>
106+
107+
<!-- Contact -->
108+
<div class="content-section">
109+
<h2>📬 Get In Touch</h2>
110+
<p>Have a suggestion, found an error, or want to contribute? Open an issue or pull request on GitHub.</p>
111+
<div class="related-grid">
112+
<a href="https://github.com/Tcode-Motion/computer-part-map/issues" target="_blank" rel="noopener" class="related-link">🐛 Report an Issue</a>
113+
<a href="https://github.com/Tcode-Motion/computer-part-map" target="_blank" rel="noopener" class="related-link">🔀 Contribute</a>
114+
<a href="index.html" class="related-link">🏠 Back to Home</a>
115+
</div>
116+
</div>
117+
118+
</div>
119+
120+
<div id="footer-placeholder"></div>
121+
122+
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
123+
<script src="js/script.js"></script>
124+
</body>
125+
</html>

battery.html

Lines changed: 62 additions & 109 deletions
Original file line numberDiff line numberDiff line change
@@ -1,122 +1,75 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Battery - Computer Parts Map</title>
7-
<!-- Linking CSS -->
8-
<link rel="stylesheet" href="css/styles.css">
9-
<link rel="stylesheet" href="css/battery.css">
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Battery — Laptop &amp; UPS Guide | Computer Parts Map</title>
7+
<meta name="description" content="Battery technology guide — Li-Ion vs LiPo, UPS, laptop battery care, and top picks.">
8+
<link rel="stylesheet" href="css/styles.css">
109
</head>
1110
<body>
11+
<div id="navbar-placeholder"></div>
12+
<div class="component-hero">
13+
<div class="badge">🔋 Power Supply</div>
14+
<h1>Battery</h1>
15+
<p class="hero-subtitle">From laptop cells to UPS backup — powering your system when the wall can't.</p>
16+
<img src="images/battery.jpg" alt="Battery" class="hero-img">
17+
</div>
18+
<div class="page-content">
1219

13-
<!-- Navigation Bar with Dropdown -->
14-
<nav class="navbar">
15-
<ul>
16-
<li class="nav-item"><a href="index.html">Home</a></li>
17-
<li class="nav-item">
18-
<a href="#">Input Devices</a>
19-
<ul class="sub-nav">
20-
<li><a href="keyboard.html">Keyboard</a></li>
21-
<li><a href="mouse.html">Mouse</a></li>
22-
<li><a href="scanner.html">Scanner</a></li>
23-
<li><a href="microphone.html">Microphone</a></li>
24-
</ul>
25-
</li>
26-
<li class="nav-item">
27-
<a href="#">Output Devices</a>
28-
<ul class="sub-nav">
29-
<li><a href="monitor.html">Monitor</a></li>
30-
<li><a href="printer.html">Printer</a></li>
31-
<li><a href="speakers.html">Speakers</a></li>
32-
<li><a href="projector.html">Projector</a></li>
33-
</ul>
34-
</li>
35-
<li class="nav-item">
36-
<a href="#">Main Components</a>
37-
<ul class="sub-nav">
38-
<li><a href="cpu.html">CPU</a></li>
39-
<li><a href="gpu.html">GPU</a></li>
40-
<li><a href="ram.html">RAM</a></li>
41-
<li><a href="hdd.html">HDD</a></li>
42-
<li><a href="ssd.html">SSD</a></li>
43-
<li><a href="usb-flash.html">USB Flash Drive</a></li>
44-
</ul>
45-
</li>
46-
<li class="nav-item">
47-
<a href="#">Power</a>
48-
<ul class="sub-nav">
49-
<li><a href="psu.html">Power Supply Unit</a></li>
50-
<li><a href="battery.html">Battery</a></li>
51-
</ul>
52-
</li>
53-
<li class="nav-item">
54-
<a href="#">Networking</a>
55-
<ul class="sub-nav">
56-
<li><a href="nic.html">Network Interface Card</a></li>
57-
<li><a href="wifi-adapter.html">Wi-Fi Adapter</a></li>
58-
<li><a href="router.html">Router</a></li>
59-
</ul>
60-
</li>
61-
<li class="nav-item">
62-
<a href="#">Audio</a>
63-
<ul class="sub-nav">
64-
<li><a href="graphics-card.html">Graphics Card</a></li>
65-
<li><a href="sound-card.html">Sound Card</a></li>
66-
</ul>
67-
</li>
68-
</ul>
69-
</nav>
20+
<div class="content-section">
21+
<h2>📖 Batteries in Computing</h2>
22+
<p>In computing, <strong>batteries</strong> serve two major roles: the rechargeable pack in laptops and tablets that enables portability, and the UPS (Uninterruptible Power Supply) battery that protects desktop systems from power outages, protecting data and hardware from power surges.</p>
23+
<div class="did-you-know">
24+
<div class="dyk-label">💡 Did You Know?</div>
25+
<p>Lithium-ion batteries degrade with charge cycles. Keeping a laptop battery between 20–80% charge can double its lifespan from ~500 cycles to ~1000 cycles.</p>
26+
</div>
27+
</div>
7028

71-
<!-- Battery Page Content -->
72-
<section>
73-
<h1>Battery</h1>
74-
<img src="images/battery.jpg" alt="Battery" class="device-img">
75-
<p>A battery is a portable power source used to store and provide electrical energy for devices such as laptops, smartphones, and other electronics. They are essential components in many electronic devices that need to operate without being plugged into an external power source. Batteries have revolutionized the way we use technology, enabling mobility and convenience in our daily lives. From powering small gadgets to large-scale energy storage systems, batteries play a critical role in modern society.</p>
29+
<div class="content-section">
30+
<h2>🆚 Battery Technologies</h2>
31+
<table class="spec-table">
32+
<thead><tr><th>Type</th><th>Energy Density</th><th>Lifespan</th><th>Application</th></tr></thead>
33+
<tbody>
34+
<tr><td>Li-Ion (Lithium-Ion)</td><td>150–265 Wh/kg</td><td>500–1000 cycles</td><td>Laptops, UPS, phones</td></tr>
35+
<tr><td>LiPo (Lithium Polymer)</td><td>100–265 Wh/kg</td><td>300–500 cycles</td><td>Thin laptops, tablets</td></tr>
36+
<tr><td>Lead-Acid (SLA)</td><td>30–50 Wh/kg</td><td>200–300 cycles</td><td>UPS backup systems</td></tr>
37+
<tr><td>CMOS Battery (CR2032)</td><td>N/A</td><td>5–10 years</td><td>BIOS clock, settings</td></tr>
38+
</tbody>
39+
</table>
40+
</div>
7641

77-
<h2>History of Batteries</h2>
78-
<p>The first battery was invented by Alessandro Volta in 1800. This early form of the battery was a simple voltaic pile, a stack of copper and zinc discs. Over the years, the technology has evolved to become the rechargeable lithium-ion and lithium-polymer batteries commonly used in modern electronics. The development of batteries has been driven by the need for portable and reliable energy sources, leading to innovations such as alkaline batteries, nickel-metal hydride batteries, and solid-state batteries. Each advancement has brought improvements in energy density, safety, and environmental impact.</p>
42+
<div class="content-section">
43+
<h2>🛒 Top Battery Products</h2>
44+
<div class="products-grid">
45+
<div class="product-card">
46+
<img src="images/battery.jpg" alt="APC Back-UPS 1500VA">
47+
<h4>APC Back-UPS BX1100C-IN</h4>
48+
<p class="product-spec">1100VA / 660W · 8 outlets · 1-hour runtime for basic PC · USB charging</p>
49+
<p class="product-price">~₹6,500</p>
50+
<a href="https://amzn.in/d/apcbackups" target="_blank" rel="noopener" class="buy-btn">🛒 Amazon India</a>
51+
</div>
52+
<div class="product-card">
53+
<img src="images/battery.jpg" alt="Genus GX1000 UPS">
54+
<h4>Genus GX1000 UPS</h4>
55+
<p class="product-spec">1000VA · Pure sine wave · LCD display · Best Indian brand UPS pick</p>
56+
<p class="product-price">~₹4,800</p>
57+
<a href="https://www.flipkart.com/search?q=genus+ups+1000va" target="_blank" rel="noopener" class="buy-btn flipkart">🛒 Flipkart</a>
58+
</div>
59+
</div>
60+
</div>
7961

80-
<h2>How Batteries Work</h2>
81-
<p>Batteries operate by converting chemical energy into electrical energy. Inside the battery, there are two electrodes: the anode (negative) and the cathode (positive), which are connected by an electrolyte. When a device requires power, the battery undergoes a chemical reaction that releases electrons from the anode, which then flow through the device, powering it. The reaction continues as long as the battery has charge left. Modern batteries are designed to maximize efficiency and minimize energy loss, ensuring that devices can operate for extended periods without frequent recharging.</p>
62+
<div class="content-section">
63+
<h2>🔗 Related Components</h2>
64+
<div class="related-grid">
65+
<a href="psu.html" class="related-link">🔌 PSU</a>
66+
<a href="cpu.html" class="related-link">⚙️ CPU</a>
67+
</div>
68+
</div>
8269

83-
<h2>Types of Batteries</h2>
84-
<ul>
85-
<li><strong>Lithium-Ion (Li-ion) Battery</strong>: Lithium-ion batteries are the most commonly used rechargeable batteries. They are lightweight, have a high energy density, and are used in devices like laptops, smartphones, and electric vehicles.</li>
86-
<li><strong>Lithium-Polymer (LiPo) Battery</strong>: Lithium-polymer batteries are similar to lithium-ion batteries but use a solid or gel-like electrolyte instead of a liquid. They are often used in thin devices like smartphones and tablets.</li>
87-
<li><strong>Nickel-Metal Hydride (NiMH) Battery</strong>: NiMH batteries are commonly used in household electronics and hybrid cars. They are less prone to memory effect than older nickel-cadmium (NiCd) batteries.</li>
88-
<li><strong>Nickel-Cadmium (NiCd) Battery</strong>: NiCd batteries were widely used in the past but are now being replaced by newer, more efficient batteries due to their memory effect, which reduces their capacity over time.</li>
89-
<li><strong>Alkaline Battery</strong>: Alkaline batteries are non-rechargeable and used in a variety of devices, such as flashlights, remote controls, and toys.</li>
90-
<li><strong>Zinc-Carbon Battery</strong>: These are low-cost, non-rechargeable batteries commonly used in low-drain devices like clocks and remote controls.</li>
91-
</ul>
92-
93-
<h2>Advantages of Batteries</h2>
94-
<ul>
95-
<li><strong>Portability</strong>: Batteries allow devices to be used without being plugged into an outlet, providing mobility and convenience. This portability has enabled the development of mobile devices, wearable technology, and remote sensors.</li>
96-
<li><strong>Energy Storage</strong>: Batteries store electrical energy for later use, enabling devices to operate even when there is no external power source. This capability is crucial for renewable energy systems, where energy must be stored for use during periods of low generation.</li>
97-
<li><strong>Variety of Applications</strong>: Batteries are used in a wide range of devices, from portable electronics to electric vehicles and renewable energy storage systems. Their versatility makes them indispensable in both consumer and industrial applications.</li>
98-
</ul>
99-
100-
<h2>Disadvantages of Batteries</h2>
101-
<ul>
102-
<li><strong>Limited Lifespan</strong>: Over time, the chemical reactions inside batteries degrade, reducing their capacity and performance. This degradation can lead to shorter usage times and the need for frequent replacements.</li>
103-
<li><strong>Environmental Impact</strong>: Improper disposal of batteries can lead to pollution, as they contain toxic chemicals such as mercury and cadmium. Recycling programs and the development of eco-friendly batteries aim to address these environmental concerns.</li>
104-
<li><strong>Recharge Time</strong>: While many modern batteries are rechargeable, they still require time to recharge, which can be inconvenient in some situations. Advances in fast-charging technology are helping to mitigate this issue.</li>
105-
</ul>
106-
107-
<h2>Applications of Batteries</h2>
108-
<p>Batteries are integral to a wide range of applications, from powering small electronic devices to enabling large-scale energy storage. In the realm of portable electronics, batteries provide the energy needed for smartphones, laptops, and tablets, allowing users to stay connected and productive on the go. In the automotive industry, batteries are the backbone of electric vehicles, offering a sustainable alternative to fossil fuels. Additionally, batteries play a crucial role in renewable energy systems, storing energy generated by solar panels and wind turbines for use during periods of low production. Medical devices, such as pacemakers and hearing aids, also rely on batteries to provide life-saving functionality.</p>
109-
110-
<h2>Popular Battery Brands</h2>
111-
<p>Several companies are at the forefront of battery technology, producing high-quality products for various applications. <strong>Energizer</strong> and <strong>Duracell</strong> are household names known for their reliable alkaline and rechargeable batteries, widely used in consumer electronics. <strong>Samsung SDI</strong> and <strong>Panasonic</strong> are leaders in lithium-ion battery production, supplying batteries for smartphones, laptops, and electric vehicles. These brands continue to innovate, developing batteries with higher energy densities, faster charging capabilities, and improved safety features to meet the growing demands of modern technology.</p>
112-
113-
<h2>Conclusion</h2>
114-
<p>Batteries are essential components in modern technology, enabling devices to function without being plugged into an external power source. From small household gadgets to large electric vehicles, batteries provide the energy needed to power our devices and improve our daily lives. As technology continues to advance, the development of more efficient, longer-lasting, and environmentally friendly batteries will continue to play a vital role in shaping the future of energy storage and portable power. The ongoing research into solid-state batteries and other innovative technologies promises to revolutionize the way we store and use energy, paving the way for a more sustainable and connected world.</p>
115-
</section>
116-
117-
<!-- Linking JavaScript -->
118-
<script src="js/script.js"></script>
119-
<!-- Include Anime.js -->
70+
</div>
71+
<div id="footer-placeholder"></div>
12072
<script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
73+
<script src="js/script.js"></script>
12174
</body>
12275
</html>

0 commit comments

Comments
 (0)