Home - Sandy018-sk/my-portfolio GitHub Wiki

Welcome to the my-portfolio wiki!

<title>B. SANTHOSHKUMAR | Portfolio</title> <style> :root { --bg: #ffffff; --text: #111111; --accent: #4f46e5; } [data-theme="dark"] { --bg: #111111; --text: #ffffff; --accent: #818cf8; }
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.3s, color 0.3s;
}

header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--text);
}

.theme-toggle {
  background: none;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

main {
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}

h1, h2 {
  color: var(--accent);
}

section {
  margin-bottom: 3rem;
}

.projects {
  display: grid;
  gap: 1.5rem;
}

.project {
  padding: 1rem;
  border: 1px solid var(--text);
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--text);
}

@media (min-width: 600px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .projects {
    grid-template-columns: 1fr;
  }
}
</style>

B. SANTHOSHKUMAR

Toggle Theme

About Me

Hi! I'm B. Santhoshkumar, a creative and curious individual who enjoys exploring and building personal projects just for fun. I like experimenting with HTML, CSS, and JavaScript to bring ideas to life.

<section>
  <h2>Projects</h2>
  <div class="projects">
    <div class="project">
      <h3>Weather App</h3>
      <p>A small web app that shows real-time weather using HTML, CSS, and JS.</p>
    </div>
    <div class="project">
      <h3>Todo List</h3>
      <p>A classic task tracker with add, edit, and delete features.</p>
    </div>
    <div class="project">
      <h3>Color Picker</h3>
      <p>A fun tool to generate and copy color codes for design work.</p>
    </div>
    <div class="project">
      <h3>Quote Generator</h3>
      <p>Generates random inspirational quotes on button click.</p>
    </div>
  </div>
</section>

<section>
  <h2>Contact</h2>
  <p>📞 <strong>Mobile:</strong> 9789235636</p>
  <p>📧 <strong>Email:</strong> <a href="mailto:[email protected]">[email protected]</a></p>
</section>
© 2025 B. Santhoshkumar. Built with HTML, CSS & JS. <script> function toggleTheme() { const current = document.documentElement.getAttribute("data-theme"); const next = current === "dark" ? "light" : "dark"; document.documentElement.setAttribute("data-theme", next); localStorage.setItem("theme", next); } (function () { const saved = localStorage.getItem("theme") || "light"; document.documentElement.setAttribute("data-theme", saved); })(); </script>
⚠️ **GitHub.com Fallback** ⚠️