added version corner thing

This commit is contained in:
Robert
2025-02-21 08:36:05 -06:00
committed by GitHub
parent 8449c45a05
commit 0896bd2bc7
+29 -1
View File
@@ -92,4 +92,32 @@
});
</script>
</body>
</html>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Version Display</title>
<style>
.version {
position: fixed;
bottom: 10px;
right: 10px;
background-color: #f1f1f1;
padding: 5px 10px;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
font-family: Arial, sans-serif;
font-size: 14px;
}
</style>
</head>
<body>
<div class="version" id="versionDisplay"></div>
<script>
document.getElementById('versionDisplay').textContent = 'Version 2.44.0';
</script>
</body>
</html>