Calculator Tools Calculator Tools
Create

Duolingo English Kids

Jan 5, 2024

About this app

Duolingo English Kids is a fun and interactive app for children to learn English.

Duolingo English Kids Duolingo English Kids Duolingo English Kids is a fun and interactive app for children to learn English. Play Lesson Track Progress Show Rewards

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>Duolingo English Kids</title>
<meta name="description" content="Duolingo English Kids is a fun and interactive app for children to learn English.">
<meta name="keywords" content="duolingo, english, kids, learn, language, education">

<link href="https://fonts.googleapis.com/css?family=Quicksand:400,700" rel="stylesheet">

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

<script type="text/javascript">
try {
document.addEventListener("DOMContentLoaded", function() {
// App Functionality Goes Here
});

function playLesson() {
// Code to play a lesson goes here
}

function trackProgress() {
// Code to track user progress goes here
}

function showRewards() {
// Code to show user rewards goes here
}

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

<style>
body {
font-family: 'Quicksand', sans-serif;
}

#main-container {
padding: 20px;
text-align: center;
}

h1 {
font-size: 36px;
color: #FF5733;
margin-bottom: 20px;
}

p {
font-size: 18px;
color: #333333;
margin-bottom: 20px;
}

.btn {
background-color: #FF5733;
color: #FFFFFF;
border: none;
padding: 10px 20px;
font-size: 18px;
border-radius: 5px;
cursor: pointer;
}

.btn:hover {
background-color: #D44014;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Duolingo English Kids</h1>
<p>Duolingo English Kids is a fun and interactive app for children to learn English.</p>
<button class="btn" onclick="playLesson()">Play Lesson</button>
<button class="btn" onclick="trackProgress()">Track Progress</button>
<button class="btn" onclick="showRewards()">Show Rewards</button>
</div>
</body>
</html>