Calculator Tools Calculator Tools
Create

Ben and Holly's Little Kingdom Transcript Dialogues

Aug 12, 2026

About this app

Transcript dialogues of 52 episodes of Ben and Holly's Little Kingdom

Ben and Holly's Little Kingdom Transcript Dialogues Ben and Holly's Little Kingdom Transcript Dialogues Episode 1: Gaston's Visit Narrator: In the Little Kingdom... Ben Elf: Today, King Thistle is opening a new sports stadium. Holly Thistle: I can't wait to see the new stadium! Episode 2: Nanny Plum's Lesson Narrator: In the Little Kingdom... Nanny Plum: Today, I will teach you how to make a magic potion. Ben Elf: Wow, that sounds exciting!

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>Ben and Holly's Little Kingdom Transcript Dialogues</title>
<meta name="description" content="Transcript dialogues of 52 episodes of Ben and Holly's Little Kingdom">
<meta name="keywords" content="Ben and Holly's Little Kingdom, transcript, dialogues, episodes">

<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-169263437430924";
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>

<style>
body {
background-color: #f5f5f5;
font-family: 'Roboto', sans-serif;
}

.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}

h1 {
color: #ff4081;
font-size: 28px;
text-align: center;
margin-bottom: 30px;
}

.episode {
margin-bottom: 20px;
}

.episode-title {
color: #673ab7;
font-size: 20px;
margin-bottom: 10px;
}

.dialogue {
color: #333333;
font-size: 16px;
line-height: 1.5;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Ben and Holly's Little Kingdom Transcript Dialogues</h1>

<div class="episode">
<h2 class="episode-title">Episode 1: Gaston's Visit</h2>
<p class="dialogue">Narrator: In the Little Kingdom...</p>
<p class="dialogue">Ben Elf: Today, King Thistle is opening a new sports stadium.</p>
<p class="dialogue">Holly Thistle: I can't wait to see the new stadium!</p>
</div>

<div class="episode">
<h2 class="episode-title">Episode 2: Nanny Plum's Lesson</h2>
<p class="dialogue">Narrator: In the Little Kingdom...</p>
<p class="dialogue">Nanny Plum: Today, I will teach you how to make a magic potion.</p>
<p class="dialogue">Ben Elf: Wow, that sounds exciting!</p>
</div>

<!-- Add more episodes here -->

</div>
</body>
</html>