top of page

This illustration represents a cosmic space, symbolizing the infinite possibilities and 24/7 availability of the restaurant. Relax and enjoy the food with one of the market leaders in fast food.

This work is a self initiated project and is not affiliated with McDonald’s company in any way.

bottom of page
// Функция для удаления всплывающих подсказок у изображений внутри проекта function removeImageTooltips() { // Находим все изображения внутри проекта var projectImages = document.querySelectorAll('.project-images img'); // Проходимся по каждому изображению и удаляем атрибут title projectImages.forEach(function(image) { image.removeAttribute('title'); }); } // Вызываем функцию при загрузке страницы document.addEventListener('DOMContentLoaded', function() { removeImageTooltips(); });