Hello 👋 My name is zhan.shatmanov

I'm a Frontend developer.

I build fast, accessible, and modern web interfaces with a strong focus on detail and user experience.

15+

years of experience

66+

projects

100%

engagement

zhan.dev
Skills

What I Do Best

I use modern technologies and tools to build high-quality digital products.

  • <!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>New Project</title>
  • </head>
  • <body>
  •     
  • </body>
  • </html>
  • body {
  •   font-family: 'Roboto', sans-serif;
  •   font-size: 16px;
  •   color: #323337;
  •   margin: 0;
  •   min-width: 300px;
  • }
  • function init () {
  •     const btn = document.querySelector('.btn');
  •     btn.addEventListener('click' () => {
  •         document.body.classList.toggle('dark');
  •     });
  • }
  • init();