Mam
Mam
DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #847ce0;
}
header {
background-color: #cfb8dd;
color: #fff;
text-align: center;
padding: 2rem 0;
position: relative; /* Add this */
}
.header-content h1 {
font-size: 2.5rem;
}
nav {
background-color: #333;
color: #fff;
text-align: center;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 20px;
}
nav ul li a {
text-decoration: none;
color: #fff;
}
.section-content {
background-color: #fff;
padding: 2rem;
margin: 1rem;
border-radius: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: justify;
}
.download-button {
background-color: #333;
color: #fff;
padding: 0.5rem 1rem;
text-decoration: none;
border-radius: 20px;
display: inline-block;
margin-top: 10px;
align-self: center;
}
.download-button:hover {
background-color: #555;
}
footer {
text-align: center;
padding: 1rem 0;
background-color: #333;
color: #fff;
}
ul {
list-style-type: disc;
padding-left: 20px;
}
</style>
</head>
<body>
<header>
<div class="header-content">
<!-- Add your profile picture here -->
<img src="propic.jpg" alt="Your Profile Picture" class="profile-
picture">
<h1>Ms.R.T.RESHMA HASHMI</h1>
<p>ASSISTANT PROFESSOR</p>
</div>
</header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#resume">Resume</a></li>
</ul>
</nav>
<section id="about">
<div class="section-content">
<h2>About Me</h2>
<p>A seasoned Assistant Professor of Computer Science, well-versed in
the digital realms. On the lookout for an Assistant Professor role where I can
harness my teaching prowess, research acumen, and programming expertise to nurture
the next generation of computer scientists and enrich the academic landscape.</p>
</div>
</section>
<section id="education">
<div class="section-content">
<h2>Education</h2>
<p>University of Madras - M.Sc.IT</p>
</div>
</section>
<section id="skills">
<div class="section-content">
<h2>Skills</h2>
<ul>
<li>JAVA</li>
<li>RDBMS</li>
<li>C++</li>
<li>WEB DESIGNING</li>
<li>ADNROID</li>
<li>R PROGRAMMING<li>
</ul>
</div>
</section>
<section id="projects">
<div class="section-content">
<h2>Projects</h2>
<ul>
<li><a href="#">AI Based alternator control system</a></li>
<li><a href="#">Cloud Security IBM</a></li>
<li><a href="#">IBM chetbot</a></li>
<li><a href="#">chetbot</a></li>
<!-- Add more project links here -->
</ul>
</div>
</section>
<section id="resume">
<div class="section-content">
<center>
<h2>Resume</h2>
<a href="resume.pdf" target="_blank" class="download-button">Download
CV</a>
</center>
</div>
</section>
<footer>
<p>© 2025 RESHMA</p>
</footer>
<script>
// Smooth scrolling to section when clicking on navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop,
behavior: 'smooth'
});
}
});
});
</script>
</body>
</html>