
Viktoria Kalugina
Junior Frontend Developer
Contacts:
- Location:Krym, Stary Krym
- e-mail:torya.toria@yandex.ru
- GitHub:ToryaToria
- Discord:Torya_toria
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:
- Higher education:
SevSTU, 2000, system engineer.
Specialty: computer complexes, systems and networks. - Open Education — Web Programming
- Htmlacademy — simulators
- Rs school — I'm studying now
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='';}