This project introduced me to JavaScript, where I learned to create a responsive webpage. The skills gained here influenced my later projects. Dive into Turkey's rich history with visually appealing sections, crafted using HTML5, offering an engaging journey through the nation's essence.
Development
This project holds immense significance for me, being my inaugural solo endeavor in the professional realm. It served as a pivotal learning experience, offering insights into crafting responsive pages, optimizing UX/UI for screen readers, and executing a user-friendly website construction process, including meticulous development stages
Highlights
To make the user experience more engaging and intuitive, we implemented a search feature that enables users to find specific movies easily. The application was designed with the user in mind, aiming to provide a user-friendly platform that enhances the enjoyment of watching movies. One of the notable technical aspects of this project was the use of Axios to fetch data from TMDB.
What i learned
1
2
3
4
5
6
7
const toggleMenu = document.querySelector(".toggle-menu");
toggleMenu.addEventListener("click", function () {
const headerNav = document.querySelector(".header-nav");
headerNav.classList.toggle("header-nav-active");
});
Beginnings are always of great importance. Throughout this project, I learned JavaScript while creating my first hamburger menu. The main challenge was ensuring the page's responsiveness, and I successfully used the skills I gained during this experience in subsequent projects.