Junior Developer of the external interface Contact information: Phone: +375 29 676 02 06 Email address: valeriya.terebilova@gmail.com Telegram: @Valeridragon
In 2019, she started creating turbo pages for clients’ websites through the freelance exchange. There was an interest in web technologies and in February 2020 I enrolled in retraining courses at the BSU Institute of Business in the specialty “Web designer programmer” In September 2021 I defended the qualification work within which the resource was created https://workal.ru /. At the moment, I am developing in front-end development and diving into the study of javascript.
I am interested in web development because this profession provides endless opportunities for professional growth, in addition, there are a huge number of free high-quality resources for self-education and a large community of developers.
I believe that my ability to learn and acquire new skills will help me go this way and become an experienced interface developer
```const search = () => { const inputSearch = document.querySelector(“.search-block > input”); const btnSearch = document.querySelector(“.search-block > button”);
const renderGoods = (goods) => {
const containerCard = document.querySelector(“.long-goods-list”); containerCard.innerHTML = “”;
goods.forEach((good) => {
const { category, description, gender, id, img, label, name, offer, price, } = good; const goodBlock = document.createElement(“div”); goodBlock.classList.add(“col-lg-3”); goodBlock.classList.add(“col-sm-6”);
goodBlock.innerHTML = `
${description}
`; containerCard.append(goodBlock); }); };
const responseServer = (value) => { fetch(“https://willberries-shop-default-rtdb.firebaseio.com/db.json”) .then((response) => { return response.json(); }) .then((data) => {
const array = data.filter((item) =>
item.name.toLowerCase().includes(value.toLowerCase())
);
localStorage.setItem("goods", JSON.stringify(array));
if (window.location.pathname !== "/goods.html") {
window.location.href = "/goods.html";
} else {
renderGoods(array);
} }); }; try { btnSearch.addEventListener("click", () => { console.log(); responseServer(inputSearch.value); }); } catch (e) {} };search() ```
Page layout https://cosmedi.ru/peresadka-volos-v-turtsii.html . Creating a website https://workal.ru / , https://websvyaz.ru / , http://aktivprof.ru / , creating a page https://maverick.by/viza-shengen / and block programming https://maverick.by/viza-shengen/#documents Projects on github.com:
Layout of the food delivery website https://valeri-dragon.github.io/food_project/ 3) Layout of the website for choosing booking seats in the cinema https://valeri-dragon.github.io/cinema-project/