Calculator Tools Calculator Tools
Create

Do The K - Karate Fun Activity

Aug 1, 2025

About this app

Join the fun with 'Do The K', an interactive karate-themed game that teaches moves and offers exciting challenges. It's time to unleash your karate skills!

Do The K - Karate Fun Activity Do The K - It's Karate Time! Get ready to do your best karate moves. Press the button to receive your challenge! 🎉 Your Move Will Appear Here 🎉 Do the K!

Related apps

Put this on your site

Source

                    <!DOCTYPE html>
<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>Do The K - Karate Fun Activity</title>
<meta name="description" content="Join the fun with 'Do The K', an interactive karate-themed game that teaches moves and offers exciting challenges. It's time to unleash your karate skills!">
<meta name="keywords" content="Do The K, Karate, Fun Activity, Interactive Game, Karate Moves, Fitness">

<!-- 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 moves = ["Uppercut", "Roundhouse Kick", "Jumping Front Kick", "Back Fist", "Side Kick"];
let selectedMove = "";

function getRandomMove() {
const randomIndex = Math.floor(Math.random() * moves.length);
selectedMove = moves[randomIndex];
document.getElementById('move-display').innerHTML = "🎉 " + selectedMove + " 🎉";
animateMove(selectedMove);
}

function animateMove(move) {
const moveContainer = document.getElementById('move-display');
moveContainer.classList.add('animate');
setTimeout(() => {
moveContainer.classList.remove('animate');
}, 1000);
}

document.getElementById('action-btn').addEventListener('click', getRandomMove);
});

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

<style>
body {
background: linear-gradient(to right, #ff7e5f, #feb47b);
color: #fff;
font-family: Arial, sans-serif;
text-align: center;
overflow-x: hidden;
}
#main-container {
margin-top: 20px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
background-color: rgba(0, 0, 0, 0.6);
}
button {
background-color: #ff5722;
border: none;
border-radius: 5px;
padding: 15px;
font-size: 20px;
cursor: pointer;
color: white;
transition: background-color 0.3s;
}
button:hover {
background-color: #e64a19;
}
#move-display {
font-size: 30px;
margin: 20px 0;
}
.animate {
animation: bounce 1s;
}
@keyframes bounce {
20% { transform: translateY(-10px); }
50% { transform: translateY(5px); }
80% { transform: translateY(-5px); }
100% { transform: translateY(0); }
}
</style>
</head>
<body>
<div id="main-container">
<h1>Do The K - It's Karate Time!</h1>
<p>Get ready to do your best karate moves. Press the button to receive your challenge!</p>
<div id="move-display">🎉 Your Move Will Appear Here 🎉</div>
<button id="action-btn">Do the K!</button>
</div>
</body>
</html>