Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>3D Pose Estimation Apps</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
margin: 0; | |
background-color: #f0f4f8; | |
} | |
.container { | |
text-align: center; | |
} | |
h1 { | |
color: #4a90e2; | |
} | |
.button { | |
display: inline-block; | |
padding: 10px 20px; | |
margin: 10px; | |
background-color: #4a90e2; | |
color: white; | |
text-decoration: none; | |
border-radius: 5px; | |
transition: background-color 0.3s; | |
} | |
.button:hover { | |
background-color: #3a7bd5; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>3D Pose Estimation Apps</h1> | |
<a href="/web_app" class="button">Web Camera App</a> | |
<a href="/video_app" class="button">Video Processing App</a> | |
</div> | |
</body> | |
</html> |