Calculator Tools Calculator Tools
Create

Philadelphia Accent Explorer

Aug 15, 2025

About this app

Learn and practice the unique Philadelphia accent through interactive voice examples and fun quizzes. Enhance your language skills and discover city slang!

Philadelphia Accent Explorer Philadelphia Accent Explorer Next Phrase

Related apps

Put this on your site

Source

                    <html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">

<title>Philadelphia Accent Explorer</title>
<meta name="description" content="Learn and practice the unique Philadelphia accent through interactive voice examples and fun quizzes. Enhance your language skills and discover city slang!">
<meta name="keywords" content="Philadelphia, accent, language, voice, slang, interactive, quiz, learning">

<!-- Libraries -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.6.0/css/fontawesome.min.css" crossorigin="anonymous">

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
const phrases = [
{ msg: "Water" },
{ msg: "Shorty" },
{ msg: "Wooder" },
{ msg: "Jawn" },
{ msg: "Youse" },
{ msg: "Haven't done nothin'" },
{ msg: "Could care less" }
];

let currentIndex = 0;

function showPhrase(index) {
$('#phrase-display').text(`Try saying: "${phrases[index].msg}"`);
}

function nextPhrase() {
currentIndex = (currentIndex + 1) % phrases.length;
showPhrase(currentIndex);
}

$('#next-phrase').click(() => nextPhrase());

showPhrase(currentIndex);
});
} catch (error) {
throw error;
}
</script>

<style>
body {
background: linear-gradient(to right, #ff7e5f, #feb47b);
color: #fff;
font-family: 'Arial', sans-serif;
}
#main-container {
text-align: center;
padding: 50px;
}
#phrase-display {
font-size: 2rem;
margin: 20px 0;
}
.btn-next {
background-color: #28a745;
color: white;
font-size: 1.5rem;
padding: 10px 20px;
border: none;
border-radius: 5px;
transition: background-color 0.5s ease;
}
.btn-next:hover {
background-color: #218838;
}
.fade-in {
animation: fadeIn 1s forwards;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Philadelphia Accent Explorer</h1>
<div id="phrase-display" class="fade-in"></div>
<button id="next-phrase" class="btn-next">Next Phrase</button>
</div>
</body>
</html>