Photo

Timur

Nurmukhamatov

front-end devoloper

Contacts

  • Phone: +0(000)000-00-00
  • Email: Tim.Nur-Mur@mail.ru
  • VK: VK id
  • Discord: SaYFu(@TimNurMur) (rs-school server)
  • Location: Izhevsk

Brief information about me

Purpose and priorities:

  • Become a professional Front-end developer and continuously develop your skills in this and related areas.
  • I consider it a top priority to always complete tasks on time, planning and highlighting the more important details first.
  • An equally important priority is the implementation of a high-quality and well-thought-out project.

My strengths:

  • commitment to continuous development and learning;
  • fulfillment of any assigned task;
  • high level of self-study;
  • ability to adjust to sudden changes;
  • skill learns from mistakes;
  • the ability to understand a new unknown area;
  • well-coordinated teamwork;
  • bringing the assigned tasks to the end;
  • search and processing of information;
  • immersion in work "headlong";
  • generating new ideas;
  • originality of decisions;
  • sense of taste;
  • adequate perception of criticism;
  • leadership skills;
  • a responsibility;
  • punctuality;
  • stress tolerance;
  • honesty;
  • activity.

Work experience:

Since 2015 I have been a design engineer in the military industry

Education:

  • 2010-2014
    Izhevsk State Technical University named after M.T. Kalashnikov
    Faculty of Mechanical Engineering
    Department: «Heat engines and installations»
    (Aviation and rocketry)
    Bachelor of Engineering and Technology
    Diploma work with honors

  • 2014-2016
    Izhevsk State Technical University named after M.T. Kalashnikov
    Master's degree
    Direction: «Solid fuel rocket engines»
    (Aircraft engines)
    Master's degree with honors

My skills

At the moment I'm taking courses in RSSchool in the direction of Front-end developer

Basic skills by area:

  • HTML
  • CSS
  • JS
  • Git
  • Markdown
  • VSCode

I plan to study: React, Angular, Node

English level / Work experience in IT

Work at RSSchool (Louvre)


My english level: A2

Code examples

Open code
          
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" href="style.css">
  </head>
  <body>
    <header>
      <img src="/logo.png" alt="Logo">
      <nav>
        <ul>
          <li><a href="/">Main</a></li>
          <li><a href="/about">About</a></li>
          <li><a href="/contacts">Contacts</a></li>
        </ul>
      </nav>
    </header>
    <aside>
      <nav>
        <ul>
          <li><a href="/game-1/">Game 1</a></li>
          <li><a href="/game-2/">Game 2</a></li>
        </ul>
      </nav>
    </aside>
  <main>
     <p>We create games</p>
       <section class="purchase">
         <h2>Leave a purchase request</h2>
           <form>
             <!-- form -->
            </form>
        </section>
        <section class="more">
          <h2>More games</h2>
            <article class="more-games">
              <h3>Game 3</h3>
               <p> game description </p>
                <a href="#">link to the game</a>
            </article>
            <article class="more">
               <h3>Game 4</h3>
                 <p>game description</p>
                   <a href="#">link to the game</a>
            </article>
        </section>
   </main>
</body>
</html>