ADVERTISEMENT
970x220

Winwyn Marquez proud to represent Muntinlupa at Miss Universe PH

Published Feb 10, 2025 05:18 am

Actress and beauty queen Teresita Ssen “Winwyn” Marquez said she is proud to represent Muntinlupa City at the Miss Universe Philippines pageant. 

Marquez, a Muntinlupa resident, was a special guest at the flag raising ceremony at the Muntinlupa City hall on Feb. 10. 

Matagal na po akong nag-decide na irepresent ang Muntinlupa. Alam po ni mayor yan. Pinuntahan ko po siya una bago po ako mag-announce. Maraming, maraming salamat po, Mayor Ruffy Biazon (I have long decided to represent Muntinlupa. The mayor knows that. I went to him first before I announced. Thank you very much, Mayor Ruffy Biazon),” Marquez said. 

WinWynMarquez (2)A.jpg

Winwyn Marquez speaking at the flag-raising ceremony at the Muntinlupa City hall on Feb. 10 (Photo from Muntinlupa PIO)

WinWynMarquez (4).jpg

Winwyn Marquez with Muntinlupa Mayor Ruffy Biazon on Feb. 10 (Photo from Muntinlupa PIO) 

WinWynMarquez (3).jpg

Winwyn Marquez with Muntinlupa Mayor Ruffy Biazon, City Administrator Allan Cachuela and councilors on Feb. 10 (Photo from Muntinlupa PIO) WinwynMarquez.jpg

Winwyn Marquez will represent Muntinlupa at the Miss Universe Philippines pageant (Photo from Muntinlupa City government) 

Marquez also thanked the Muntinlupa City Council, City Administrator Allan Cachuela and Muntinlupa City government departments for their support.  

“Excited po akong i-represent ang Emerald City ng Pilipinas–a place for hope and change. Excited po akong i-share ang sincerity and warmth ng Muntinlupeño. Muntinlupa, let's #WYNtheUNIVERSE (I am excited to represent the Emerald City of the Philippines–a place for hope and change. I am excited to share the sincerity and warmth of Muntinlupeño. Muntinlupa, let's #WYNtheUNIVERSE),” Marquez added. 

In 2017, Marquez won the title Reina Hispanoamericana Filipinas 2017 at the Miss World Philippines pageant. 

Marquez represented the Philippines and won the crown at the Reina Hispanoamericana 2017 in Bolivia. 

In an Instagram post, Marquez said, “It has been 10 years since I first stepped onto a pageant stage, 8 years since I became Miss Filipinas and lived a dream I worked so hard for outside the pageant world. Then I took a step back and embraced the most beautiful role of my life.. becoming a mother. I embraced it fully but deep down I still had my what ifs..”

“Who would’ve thought that this door would open again? For a mother, for a woman at this stage in life.. But when it did,I felt it. I had to take it.. because I am more than ready - I am WHOLE,” she said. 

She added, “Joining this journey is already a WIN for me. But more than that, I’m here to show you what it truly means to be a Reina. To prove that dreams don’t have deadlines, that beauty isn’t just what you see, and that strength comes in many forms. Let's #WYNtheUNIVERSE.” 

476308213_1379403876775062_6595054774736135875_n.jpg

477562896_18492241072041948_7200217312051468917_n.jpg

476883023_18492241090041948_1763762113860604976_n.jpg

477024674_18492241099041948_1932885856575877331_n.jpg

Winwyn Marquez will compete at the Miss Universe Philippines pageant (Photos: Miss Universe Philippines and Winwyn Marquez on Instagram) 

Related Tags

Winwyn Marquez Muntinlupa City metronews Miss Universe Philippines
ADVERTISEMENT
300x250
.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 72px 0 12px; } .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; } li:empty { display: none; } .hidden { display: none; }
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]; // The two offset values // changed to 10 from 1 , 2 const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } function isNearBottom() { return window.innerHeight + window.scrollY >= document.documentElement.scrollHeight - 100; } function onScroll() { if (isLoading) return; // Skip if already loading if (isNearBottom()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; // Set flag to prevent multiple calls const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { loadCount++; // Increment only after successful execution }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; // Reset flag after execution }); } } window.addEventListener("scroll", onScroll); }); // Mutation Observer for Newly Loaded Articles const observer = new MutationObserver(() => { const articles = document.querySelectorAll(".articles-observe"); if (articles.length > 0) { observeArticles(articles); } }); observer.observe(document.body, { childList: true, subtree: true }); // Intersection Observer for Updating URL function observeArticles(articles) { 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); } } }); }, { threshold: 0.1 } ); articles.forEach(article => intersectionObserver.observe(article)); }

Sign up by email to receive news.