Try our Gamertag Generator to create catchy and memorable gaming nicknames. Give it a spin and reinvent your gaming identity! Use the code below to add the generator to your website!
Gamertag Name Generator
Click the button to generate a random gamertag!
Powered by SpicyNerd.com
Copy and Paste Code
Share this Gamertag Name Generator on your website! Just copy and paste the code below:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gamertag Name Generator</title>
<style>
body { background-color: #f0f0f0; font-family: Arial, sans-serif; text-align: center; padding: 20px; }
#gamertag { font-size: 24px; margin-top: 20px; color: #333; }
button { margin-top: 10px; padding: 10px 20px; background-color: #007bff; color: white; border: none; cursor: pointer; font-size: 16px; }
button:hover { background-color: #0056b3; }
.powered-by { margin-top: 20px; font-size: 14px; }
</style>
<meta name="generator" content="Powered by SpicyNerd.com">
</head>
<body>
<h1>Gamertag Name Generator</h1>
<p>Click the button to generate a random gamertag!</p>
<button onclick="generateGamertag()">Generate Gamertag</button>
<p id="gamertag"></p>
<div class="powered-by"> Powered by <a href="https://spicynerd.com" target="_blank">SpicyNerd.com</a> </div>
<script>
function generateGamertag() {
const adjectives = ["Savage", "Silent", "Furious", "Stealthy", "Mystic", "Wild", "Epic", "Legendary", "Dark", "Vicious", "Rogue", "Fiery", "Shadow", "Mighty", "Venomous", "Crimson", "Azure", "Emerald", "Scarlet", "Ivory", "Onyx", "Silver", "Cheeky", "Lazy", "Grumpy", "Sneaky", "Bouncy", "Wobbly", "Quirky", "Jolly", "Giggly", "Goofy", "Clumsy", "Zany", "Silly", "Wacky", "Destroyer", "Blood", "Guts", "Glory", "Mango", "Nuts", "Biggie", "Pac", "Lil", "Stink", "Ice", "Cube", "God", "Devil", "Hate", "Love", "Brave", "Bold", "Lethal", "Steadfast"];
const nouns = ["Warrior", "Ninja", "Ranger", "Hunter", "Titan", "Dragon", "Knight", "Ghost", "Wraith", "Phoenix", "Samurai", "Reaper", "Viper", "Sniper", "Beast", "Cobra", "Python", "Gecko", "Lizard", "Chameleon", "Raptor", "Anaconda", "Sloth", "Penguin", "Duck", "Panda", "Potato", "Banana", "Pickle", "Unicorn", "Narwhal", "Taco", "Donut", "Noodle", "Muffin", "Toad", "Ferret", "Pecker", "Commander", "Captain", "Sergeant", "Lieutenant", "General", "Destroyer", "Tank", "Bomber", "Submarine", "Cannon", "Missile", "Battleship", "Infantry", "Medic", "Scout", "Sniper", "Glory", "Ice", "Cube"];
const numbers = Math.floor(Math.random() * 10000);
const randomAdjective = adjectives[Math.floor(Math.random() * adjectives.length)];
const randomNoun = nouns[Math.floor(Math.random() * nouns.length)];
const gamertag = randomAdjective + randomNoun + numbers;
document.getElementById("gamertag").innerText = gamertag;
}
</script>
</body>
</html>
Instructions To Use The GamerTag Generator Script On Your Website:
Copy the Code: Select and copy the code above.
Embed on Your Website:
For any website: Paste the code into your HTML where you want the generator to appear
For WordPress: Use a Custom HTML block to paste the code in your post or page.
Save and Publish: Save your changes and publish your site.
