Hello there! 👋 My name is zhan.shatmanov

I'm a Frontend Developer

My works

Take a look at some of the ideas I’ve implemented.

Show all works

Skills

What I know best main technologies used in my works.

  • <!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 open_mobile () {
  •     let body = document.querySelector('body')
  •     if (hasClass(body, 'mobmenu')) {
  •         body.classList.remove('mobmenu')
  •     } else {
  •         body.classList.add('mobmenu')
  •     }
  • }
  • function hasClass(element, cls) {
  •     return (' ' + element.className + ' ').indexOf(' ' + cls + ' ') > -1
  • }