E-mail : maxim3093@gmail.com
Phone : +48570473895
GitHub: Maksbjj
Facebook: Maksim Arsianiuk
I could be described as a person who goes to the goal, until it wouldn’t be reached. It’s very me important to be able to prioritize correctly and try to learn new things every single day. At this moment my goal is to learn web programming to have a chance to be a developer in future.
Languages:
HTML5, CSS3, JavaScript
English:
A2 (Studied english for 5 years at school and later had a speaking practice during my travels)
Polish:
B2
let button = document.querySelector('button');
let size = 10;
let items = document.querySelectorAll('li');
function addFontSize() {
for (let i = 0; i < items.length; i++) {
items[i].style.fontSize = size + 'px'
items[i].style.display = 'block'
};
size++;
}
button.addEventListener('click', addFontSize)