DOCTYPE HTML
DOCTYPE HTML
DOCTYPE html>
<html lang="en">
<head>
<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>Rahul R - Personal Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
color: #333;
margin: 0;
padding: 0;
line-height: 1.6;
}
header {
background-color: #fff;
padding: 1em;
text-align: center;
}
.container {
max-width: 800px;
margin: auto;
padding: 2em;
}
h1,
h2,
h3 {
color: #333;
}
p {
margin-bottom: 1em;
}
.portfolio-item {
margin-bottom: 2em;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Rahul R</h1>
<p>Embedded Systems Developer</p>
</header>
<div class="container">
<section id="about">
<h2>About Me</h2>
<p>Hi, I'm Rahul, an aspiring embedded systems developer with a passion
for technology and innovation. I recently graduated with a B.Tech degree in
engineering and I am currently pursuing an advanced course in embedded systems. I
have a strong foundation in C/C++ programming and microcontrollers.</p>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<div class="portfolio-item">
<h3>Smart Irrigation System</h3>
<p>A smart irrigation system developed using BlinkIt IoT Platform
to optimize water usage based on weather conditions and soil moisture levels.</p>
</div>
<!-- Add more portfolio items here -->
</section>
<section id="career">
<h2>Career</h2>
<p>I am actively seeking opportunities in embedded systems development
to apply my skills and contribute to innovative projects. I am eager to learn and
grow in this field.</p>
</section>
</div>
<footer>
<p>© 2024 Rahul R. All rights reserved.</p>
</footer>
</body>
</html>