Spaces:
Running
Running
File size: 1,236 Bytes
d6ec1d1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
<!DOCTYPE html>
<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> |