ADVERTISEMENT

Learning the curve with Milan-based Filipino influencer Marvin Garcia

Published Jul 19, 2022 08:57 am

‘Being ambitious is not a bad thing if you want to be successful’

If you’re a content creator, or aspiring to be one, you’ve probably heard the advice “be consistent” a couple of times. When one asks content creators what’s the secret for a steady and fast-growing engagement, they will say being consistent is key in achieving influence.

Marvin Garcia, a.k.a. Davinz, observes this to be true. Aside from actual good style and taste, the 24-year-old creator believes another element led him to where he is now. “Always strive for more,” says Davinz. “They say being content with what we have is what we need but that’s totally not true. Being ambitious is not a bad thing if you want to be successful.”

Currently, the Milan-based Filipino influencer has more than 99K followers (on Instagram alone) who watch his every pose, every fashion event he attends, and every look he dons. 

The fashion and lifestyle content creator moved to Milan back when he was 18 to pursue graphic design and photography. With his love for fashion, Davinz also started posting his weekly outfits on social media and was noticed by an Italian agency which he later joined. Soon after, he started attending back to back fashion weeks at Paris and Milan, leading him to the new global talent agency he’s with now, The Pause Agency. 

In this exclusive, Davinz talks about his life as a digital content creator, his icons, and moments in fashion. He also shares some detailed advice for anyone who wants to make it as a digital content creator and influencer.

What are you most proud of as a digital creator?

For me, as a digital creator, one of the things I’m most proud of is actually the main description of what I do: to be able to influence my community and to serve as an inspiration to others. When I achieve these, I sense that I’m growing and that I’m moving forward.

What’s your most unforgettable fashion moment?

Every moment is unforgettable, but one unforgettable fashion show I’ve seen was the Tommy Hilfiger x Gigi Hadid Spring 2018 fashion show.

How would you define your personal style? Who are your fashion influences?

Both Asian and European styles have an impact on my personal style. I would say my own style is a mixture of both. The environment around me is another factor. Milan is one of the biggest fashion capitals in the whole world. I love seeing people dressed up especially during the cold days. 

What are your favorite brands?

As of now, I’m loving Diesel, Balenciaga and Heliot Emil.

Any tips to aspiring creators like yourself?

Always strive for more. They say being content with what we have is what we need, but that’s totally not true. Being ambitious is not a bad thing if you want to be successful.

Make time to do a lot of content. You can’t just sit there and relax. People think it’s an easy job but every creator would agree that it’s not. 

Be consistent. When I say be consistent, it means two things: posting regularly on your social media accounts and don’t get too far from your niche. I’m saying this because your audience will depend on these two.

Images from Davinz Garcia's Instagram

Related Tags

Fashion Davinz Garcia Style
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.