Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Portal</title> | |
<style> | |
body, html { | |
height: 100%; | |
margin: 0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
flex-direction: column; | |
} | |
.button { | |
padding: 20px; | |
margin: 10px; | |
font-size: 1.5em; | |
text-decoration: none; | |
color: white; | |
background-color: #007BFF; | |
border: none; | |
border-radius: 5px; | |
cursor: pointer; | |
} | |
.button:hover { | |
background-color: #0056b3; | |
} | |
</style> | |
</head> | |
<body> | |
<a href="/ViewPort" class="button">ViewPort</a> | |
<a href="/Ctrl" class="button">Ctrl</a> | |
</body> | |
</html> | |