amp-web-push-widget button.amp-subscribe { display: inline-flex; align-items: center; border-radius: 5px; border: 0; box-sizing: border-box; margin: 0; padding: 10px 15px; cursor: pointer; outline: none; font-size: 15px; font-weight: 500; background: #4A90E2; margin-top: 7px; color: white; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5); -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } .amp-logo amp-img{width:190px} .amp-menu input{display:none;}.amp-menu li.menu-item-has-children ul{display:none;}.amp-menu li{position:relative;display:block;}.amp-menu > li a{display:block;} .icon-widgets:before {content: "\e1bd";}.icon-search:before {content: "\e8b6";}.icon-shopping-cart:after {content: "\e8cc";}

funny college football and basket player names






Sports Name Generators


Sports Name Generators

🏈 Funny College Football Player Names




🏀 Funny Fantasy Basketball Names




// Basketball name components const basketballPuns = ["Ball", "Dunk", "Swish", "Jumper", "Dime", "Board", "Bucket", "Brick", "Hoop", "Net"]; const basketballThemes = { "pun": ["Slam Dunkin' Donuts", "Harden My Heart", "Durantula", "Curry Favor"], "popculture": ["Game of D'ohs", "Lord of the Rims", "Star Rebounds", "The Fast and the Curryous"], "food": ["Nacho Average Team", "Pass the Rock Lobster", "Orange You Glad I Didn't Pass", "Waffle House of Guards"], "animals": ["Grizzly Adams", "Honey Badger Don't Care", "Dunkin' Dachshunds", "The Alley Opossums"], "random": ["A Team Has No Name", "Flying Death Pandas", "The Replacements", "Your Ad Here"] };

function generateFootballNames() { const firstName = document.getElementById('footballFirstName').value || footballFirstNames[Math.floor(Math.random() * footballFirstNames.length)]; const lastName = document.getElementById('footballLastName').value || footballLastNames[Math.floor(Math.random() * footballLastNames.length)]; const position = document.getElementById('footballPosition').value; const nicknames = positionNicknames[position];

const nameOptions = [ `${firstName} "${nicknames[Math.floor(Math.random() * nicknames.length)]}" ${lastName}`, `${firstName} ${lastName}-${position}`, `"${nicknames[Math.floor(Math.random() * nicknames.length)]}" ${lastName}`, `${firstName.substring(0, 1)}. "${firstName} ${lastName}" ${lastName}`, `${firstName} "The ${lastName}" ${position}` ];

displayResults('footballResults', nameOptions); }

function generateBasketballNames() { const playerName = document.getElementById('basketballPlayer').value; const theme = document.getElementById('basketballTheme').value; const style = document.getElementById('basketballStyle').value;

let nameOptions = [];

if (playerName) { // Generate names based on player name const punPart = basketballPuns[Math.floor(Math.random() * basketballPuns.length)]; nameOptions = [ `${playerName} and ${punPart}`, `${playerName} ${punPart}ers`, `The ${playerName} ${punPart}`, `${playerName}'s ${punPart} House`, `${playerName} ${punPart} Factory` ]; } else { // Use theme-based names nameOptions = basketballThemes[theme];

// Modify based on style if (style === "absurd") { nameOptions = nameOptions.map(name => `Very ${name}`); } else if (style === "intimidating") { nameOptions = nameOptions.map(name => `Fear the ${name}`); } else if (style === "reference") { nameOptions = nameOptions.map(name => `${name} (You Probably Haven't Heard of It)`); } }

displayResults('basketballResults', nameOptions); }

function displayResults(elementId, names) { const resultsDiv = document.getElementById(elementId); resultsDiv.innerHTML = '

Generated Names:

';

names.forEach(name => { const nameDiv = document.createElement('div'); nameDiv.className = 'name-option'; nameDiv.textContent = name; resultsDiv.appendChild(nameDiv); }); }