Website about robotics and automation

 




<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Robotics & Automation</title>

<style>

body{margin:0;font-family:Poppins,Arial,sans-serif;background:linear-gradient(120deg,#ede7f6,#d1c4e9);color:#311b92;}

header{background:#4527a0;color:white;text-align:center;padding:60px 20px;}

header h1{font-size:3rem;}

nav{text-align:center;background:#311b92;padding:15px;}

nav a{color:#d1c4e9;margin:0 20px;text-decoration:none;font-weight:600;}

nav a:hover{color:white;}

section{padding:50px 20px;text-align:center;}

h2{color:#4527a0;font-size:2rem;margin-bottom:20px;}

.cards{display:flex;flex-wrap:wrap;justify-content:center;gap:25px;}

.card{background:white;padding:25px;width:260px;border-radius:12px;box-shadow:0 5px 20px rgba(0,0,0,.15);}

.card:hover{transform:translateY(-8px);}

footer{background:#311b92;color:white;text-align:center;padding:25px;font-size:22px;}

footer a{color:#b39ddb;text-decoration:none;font-weight:bold;}

</style>

</head>

<body>

<header>

<h1>🤖 Robotics & Automation</h1>

<p>Shaping the future with smart technology</p>

</header>

<nav>

<a href="#intro">Overview</a>

<a href="#fields">Applications</a>

<a href="#impact">Impact</a>

</nav>

<section id="intro">

<h2>What is Robotics?</h2>

<p>Robotics is the branch of technology that deals with designing, constructing, and operating robots. Automation integrates machines and control systems to perform tasks efficiently.</p>

</section>

<section id="fields">

<h2>Applications</h2>

<div class="cards">

<div class="card"><h3>Manufacturing</h3><p>Robots perform repetitive, precise assembly and packaging tasks.</p></div>

<div class="card"><h3>Healthcare</h3><p>Robotic surgery and rehabilitation tools improve patient care.</p></div>

<div class="card"><h3>Space Exploration</h3><p>Autonomous rovers explore distant planets like Mars.</p></div>

</div>

</section>

<section id="impact">

<h2>Impact on Society</h2>

<p>Automation boosts productivity, safety, and innovation while requiring new skills for the evolving workforce.</p>

</section>

<footer>

© 2025 <a href="https://freecodesforwebsites.blogspot.com/" target="_blank">Free Codes for Websites</a> | All rights reserved.

</footer>

</body>

</html>


Comments