I'm a passionate developer with a keen interest in web development and open-source projects. I love to learn new technologies and contribute to the community.
- Languages: JavaScript, TypeScript, Python, HTML, CSS
- Frameworks: React, Node.js, Express
- Databases: MongoDB, MySQL, PostgreSQL
- Tools: Git, Docker, AWS
Here are some of the projects I've worked on:
- Project Name 1: A brief description of what this project does and the technologies used.
- Project Name 2: A brief description of what this project does and the technologies used.
- Project Name 3: A brief description of what this project does and the technologies used.
I occasionally write about tech and programming on my blog. Check out some of my latest posts:
- LinkedIn: Your LinkedIn Profile
- Twitter: @YourTwitterHandle
- Email: your-email@example.com
<style>
@keyframes slideIn {
from {
transform: translateX(-100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.animated-section {
animation: slideIn 2s ease-in-out;
}
.header {
animation: fadeIn 3s ease-in-out;
}
</style>
<div class="animated-section">
<h1 class="header">Advanced CSS Animations</h1>
<p>Check out these cool animations!</p>
</div>