//Coded by Chandralekha Venkatesh Perumal
document.write(`<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hand Gesture Detection</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
color: white;
text-align: center;
background-image: url('https://ancientbrain.com/uploads/chandralekha/hand.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
h1 {
margin-top: 50px;
font-size: 3em;
text-shadow: 2px 2px 5px black;
}
.button-container {
margin-top: 100px;
}
.button {
background-color: #007BFF;
color: white;
padding: 15px 30px;
font-size: 1.2em;
margin: 20px;
border: none;
border-radius: 10px;
cursor: pointer;
box-shadow: 2px 2px 8px black;
transition: transform 0.2s, box-shadow 0.2s;
}
.button:hover {
transform: scale(1.1);
box-shadow: 4px 4px 12px black;
}
.small-button {
background-color: #28a745;
color: white;
padding: 8px 16px;
font-size: 0.9em;
margin: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
box-shadow: 1px 1px 5px black;
transition: transform 0.2s, box-shadow 0.2s;
}
.small-button:hover {
transform: scale(1.05);
box-shadow: 3px 3px 8px black;
}
</style>
</head>
<body>
<h1>Hand Gesture Detection</h1>
<div class="button-container">
<!-- Existing Buttons -->
<button class="button">
<a href="https://run.ancientbrain.com/run.php?world=1538603217&userid=chandralekha&dataticket=30342785185367556401526913056129&mode=1&imageticket=25442294147822387402771801363665" target="_blank">MediaPipe Detection</a>
</button>
<button class="button">
<a href="https://run.ancientbrain.com/run.php?world=3503604350" target="_blank">TensorFlow Detection</a>
</button>
<!-- New Smaller Buttons -->
<button class="small-button">
<a href = "https://ancientbrain.com/world.php?world=1538603217" </a>
MediaPipe World
</button>
<button class="small-button">
<a href = "https://ancientbrain.com/world.php?world=3503604350"</a>
TensorFlow World
</button>
<button class="small-button">
<a href = "https://ancientbrain.com/world.php?world=9176663466"</a>
Current Webpage World
</button>
<button class="small-button">
<a href = "https://ancientbrain.com/world.php?world=2361566001"</a>
Main/Previous Webpage World
</button>
</div>
</script>
</body>
</html>
`);