Portfolio
Portfolio
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Portfolio</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: white;
padding: 1em 0;
text-align: center;
}
.container {
width: 80%;
margin: 0 auto;
}
.about, .projects, .contact {
margin: 2em 0;
padding: 2em;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #333;
}
.projects img {
max-width: 100%;
border-radius: 8px;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em 0;
position: fixed;
width: 100%;
bottom: 0;
}
a {
color: #1e90ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>My Portfolio</h1>
<nav>
<a href="#about">About</a> |
<a href="#projects">Projects</a> |
<a href="#contact">Contact</a>
</nav>
</div>
</header>
<div class="container">
<section id="about" class="about">
<h2>About Me</h2>
<p>Hello! I'm v.tarun balaji, a app developer based in coimbatore. I
specialize in flutter. Welcome to my portfolio where you can see my work and learn
more about what I do.</p>
</section>
<footer>
<p>© 2024 v.tarun balaji All rights reserved.</p>
</footer>
</body>
</html>