Peppa Pig Trivia and Goofs
About this app
Peppa Pig Trivia and Goofs Peppa Pig Trivia and Goofs Trivia - Peppa Pig is voiced by Harley Bird. - The narrator of Peppa Pig is John Sparkes. - Daddy Pig is voiced by Richard Ridings. - Mummy Pig is voiced by Morwenna Banks. - George is voiced by Oliver May & Alice May. - Grandpa Pig is voiced by David Graham. - Granny Pig is voiced by Frances White. - Miss Rabbit is voiced by Sarah Ann Kennedy. - Suzy Sheep is voiced by Meg Hall. - Danny Dog is voiced by Jadon Mills. - Pedro Pony is voiced by Stanley Nickless. - Zoe Zebra is voiced by Sian Taylor. - Emily Elephant is voiced by Julia Moss. - Rebecca Rabbit is voiced by Alice May. - Candy Cat is voiced by Zara Siddiqi. - Edmond Elephant is voiced by Jonny Butler. - Richard Rabbit is voiced by Zoe Baker. - Madame Gazelle is voiced by Morwenna Banks. - Granddad Dog is voiced by David Rintoul. - Mr Rabbit is voiced by John Sparkes. - Mr Zebra the Postman is voiced by David Graham. - Sat Nav is voiced by Sarah Roper. - Mummy Sheep is voiced by Debbie McDonald. - Dr Brown Bear is voiced by David Rintoul. - Papa Donkey is voiced by Jerome Haupert. - Delphine Donkey is voiced by Nzilani Franq. - Dr Hamster the Vet is voiced by Morwenn...
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>Peppa Pig Trivia and Goofs</title>
<meta name="description" content="Trivia and Goofs about Peppa Pig">
<meta name="keywords" content="Peppa Pig, trivia, goofs">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Built-In Functions for Apps -->
<script type="text/javascript">
var localStoragePrefix = "ct-169072517726585";
var lastSave = 0;
// save to localstorage
function saveLocal(data) {
if (Date.now() - lastSave < 1000) {
return;
}
// save to cookie
let cookie = localStoragePrefix + "=" + JSON.stringify(data) + "; path=" + window.location.pathname + "'; SameSite=Strict";
cookie += "; expires=" + new Date(Date.now() + 1000 * 60 * 60 * 24 * 365 * 1000).toUTCString();
document.cookie = cookie;
lastSave = Date.now();
}
// load from localstorage
function loadLocal() {
var cookiePrefix = localStoragePrefix + "=";
var cookieStart = document.cookie.indexOf(cookiePrefix);
if (cookieStart > -1) {
let cookieEnd = document.cookie.indexOf(";", cookieStart);
if (cookieEnd == -1) {
cookieEnd = document.cookie.length;
}
var cookieData = document.cookie.substring(cookieStart + cookiePrefix.length, cookieEnd);
return JSON.parse(cookieData);
}
}
</script>
<script type="text/javascript">
// App Javascript Goes Here
</script>
<style>
/* App CSS Goes Here */
body {
background-color: #f2f2f2;
font-family: 'Roboto', sans-serif;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
h1 {
text-align: center;
margin-bottom: 30px;
color: #17a2b8;
}
.trivia-card {
background-color: #fff;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.goofs-card {
background-color: #fff;
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.card-title {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}
.card-text {
font-size: 16px;
margin-bottom: 10px;
}
.goof {
margin-bottom: 10px;
}
.goof-icon {
color: #dc3545;
margin-right: 10px;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Peppa Pig Trivia and Goofs</h1>
<div class="trivia-card">
<h2 class="card-title">Trivia</h2>
<p class="card-text">- Peppa Pig is voiced by Harley Bird.</p>
<p class="card-text">- The narrator of Peppa Pig is John Sparkes.</p>
<p class="card-text">- Daddy Pig is voiced by Richard Ridings.</p>
<p class="card-text">- Mummy Pig is voiced by Morwenna Banks.</p>
<p class="card-text">- George is voiced by Oliver May & Alice May.</p>
<p class="card-text">- Grandpa Pig is voiced by David Graham.</p>
<p class="card-text">- Granny Pig is voiced by Frances White.</p>
<p class="card-text">- Miss Rabbit is voiced by Sarah Ann Kennedy.</p>
<p class="card-text">- Suzy Sheep is voiced by Meg Hall.</p>
<p class="card-text">- Danny Dog is voiced by Jadon Mills.</p>
<p class="card-text">- Pedro Pony is voiced by Stanley Nickless.</p>
<p class="card-text">- Zoe Zebra is voiced by Sian Taylor.</p>
<p class="card-text">- Emily Elephant is voiced by Julia Moss.</p>
<p class="card-text">- Rebecca Rabbit is voiced by Alice May.</p>
<p class="card-text">- Candy Cat is voiced by Zara Siddiqi.</p>
<p class="card-text">- Edmond Elephant is voiced by Jonny Butler.</p>
<p class="card-text">- Richard Rabbit is voiced by Zoe Baker.</p>
<p class="card-text">- Madame Gazelle is voiced by Morwenna Banks.</p>
<p class="card-text">- Granddad Dog is voiced by David Rintoul.</p>
<p class="card-text">- Mr Rabbit is voiced by John Sparkes.</p>
<p class="card-text">- Mr Zebra the Postman is voiced by David Graham.</p>
<p class="card-text">- Sat Nav is voiced by Sarah Roper.</p>
<p class="card-text">- Mummy Sheep is voiced by Debbie McDonald.</p>
<p class="card-text">- Dr Brown Bear is voiced by David Rintoul.</p>
<p class="card-text">- Papa Donkey is voiced by Jerome Haupert.</p>
<p class="card-text">- Delphine Donkey is voiced by Nzilani Franq.</p>
<p class="card-text">- Dr Hamster the Vet is voiced by Morwenna Banks.</p>
<p class="card-text">- Mr Bull is voiced by David Rintoul.</p>
<p class="card-text">- Mummy Cat is voiced by Leila Farzad.</p>
<p class="card-text">- Mummy Pony is voiced by Jemima Williams.</p>
<p class="card-text">- Mr Potato is voiced by John Sparkes.</p>
<p class="card-text">- Mr Fox is voiced by John Sparkes.</p>
<p class="card-text">- Aunty Pig is voiced by Judy Flynn.</p>
<p class="card-text">- Grampy Rabbit is voiced by Brian Blessed.</p>
<p class="card-text">- Cousin Chloe is voiced by Abigail Daniels.</p>
<p class="card-text">- Freddy Fox is voiced by Max Miller & Jamie Oram.</p>
<p class="card-text">- Baby Alexander is voiced by Harley Bird.</p>
<p class="card-text">- Captain Emergency is voiced by Dominic Bryne.</p>
<p class="card-text">- Belinda Bear is voiced by Zara Siddiqi.</p>
<p class="card-text">- Simon Squirrel is voiced by Preston Nyman.</p>
<p class="card-text">- Penny Polar Bear is voiced by Mabel Green.</p>
<p class="card-text">- Mandy Mouse is voiced by Audrey Van Hulzen.</p>
<p class="card-text">- Peggi Panda is voiced by Joris Van Hulzen.</p>
<p class="card-text">- Pandora Panda is voiced by Joris Van Hulzen.</p>
<p class="card-text">- Mummy Panda is voiced by Nansy Plummy.</p>
<p class="card-text">- Mummy Polar Bear is voiced by Judy Flynn, Max Orial, Sarah Ann Kennedy.</p>
<p class="card-text">- Doctor Polar Bear is voiced by Jen Pringle, Judy Flynn, Matt Patt, John Sarah.</p>
</div>
<div class="goofs-card">
<h2 class="card-title">Goofs</h2>
<p class="goof"><i class="fa fa-exclamation-circle goof-icon"></i>No goofs about the cast.</p>
</div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!