top of page

CULINARY DELIGHTS: A FEAST FOR THE EYES

Kristina Fostovets illustrates a culinary article for Bon Appétit magazine. The article talks about exciting new discoveries in the restaurant industry. The food illustration reflects the culinary diversity and uniqueness of each of the featured restaurants. It is designed to grab attention, helping readers better understand and appreciate the topics discussed.

This work is a self initiated project and is not affiliated with Bon Appétit magazine in anyway.

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(); });