Posts

Showing posts from June, 2023

insta fancey text genroter

Fancy Name Text Generator Fancy Name Text Generator Generate Your fancy name: body { text-align: center; } h1 { color: #333; } button { padding: 10px 20px; background-color: #337ab7; color: #fff; border: none; cursor: pointer; } p { font-size: 18px; margin-top: 20px; } #result { font-weight: bold; color: #ff69b4; } function generateFancyName() { var adjectives = ["Awesome", "Fantastic", "Glamorous", "Sparkling", "Dazzling"]; var nouns = ["Influencer", "Superstar", "Diva", "Fashionista", "Icon"]; var randomAdjective = adjectives[Math.floor(Math.random() * adjectives.length)]; var randomNoun = nouns[Math.floor(Math.random() * nouns.length)]; var fancyName = randomAdjective + randomNoun; document.getElementById("result").textContent = fancyName; } document.getElementById("generateButton").addEventLi...