Kalugina V.

Viktoria Kalugina

Junior Frontend Developer

Contacts:

Summary:

I started studying web programming and continue to actively develop in this area. There is no experience in this specialty yet.

I am actively improving my web programming skills by attending online courses, lectures and seminars. I constantly practice creating websites.

Skills:

  • Git/GitHub
  • HTML5/CSS3
  • Basic knowledge of PHP
  • JavaScript - Studying
  • Semantic and adaptive layout
  • Flexbox/Grid
  • PhotoShop/Figma

Languages:

  • Russian — Native
  • English — A2 — Elementary

Education and courses:

Code

let keys = document.querySelectorAll('.key');
let display = document.querySelector('.display');
let clear = document.querySelector('.clear');
display.textContent='';

for (let key of keys) {
  key.onclick = function () {
  display.textContent = display.textContent + key.textContent;
};};

clear.onclick = function () {
display.textContent='';}