Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ElectroTech</title>

<link rel="stylesheet" href="style.css">
</head>
<body>

<!-- Navigation -->
<nav>
<div class="logo">PSGCAS</div>

<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>

<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>Welcome to PSGCAS</h1>

<p>
Your One-Stop Solution for Electronics,
Embedded Systems and IoT.
</p>

<button id="exploreBtn">Explore More</button>
</div>
</section>

<!-- About -->
<section id="about">

<h2>About Us</h2>

<p class="about-text">
We provide innovative electronics solutions,
embedded systems, IoT development,
PCB design and hardware prototyping
for students and industries.
</p>

</section>

<!-- Services -->
<section id="services">

<h2>Our Services</h2>

<div class="cards">

<div class="card">
<h3>PCB Design</h3>
<p>Professional PCB design and circuit development.</p>
</div>

<div class="card">
<h3>IoT Projects</h3>
<p>Smart automation and IoT-based applications.</p>
</div>

<div class="card">
<h3>Embedded Systems</h3>
<p>Microcontroller programming and hardware development.</p>
</div>

</div>

</section>

<!-- Contact -->
<section id="contact">

<h2>Contact</h2>

<div class="contact-box">
<p>Email : info@psgcas.com</p>
<p>Phone : +91 1111111111</p>
<p>Location : Coimbatore, Tamil Nadu</p>
</div>

</section>

<!-- Footer -->
<footer>

<p>© 2026 PSGCAS. All Rights Reserved.</p>

</footer>

<script src="script.js"></script>

</body>
</html>