37 lines
842 B
HTML
37 lines
842 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Welcome</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
background-color: #f4f4f4;
|
|
display: inline-block;
|
|
position: absolute;
|
|
left: 20vw;
|
|
margin-top: 15vh;
|
|
}
|
|
img {
|
|
color: #666;
|
|
width: 50vw;
|
|
}
|
|
.status {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background: #d4edda;
|
|
color: #155724;
|
|
border: 1px solid #c3e6cb;
|
|
border-radius: 4px;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img src="https://i.imgur.com/a34LRKL.png" alt="Targo logo image">
|
|
<div class="status">Server is running</div>
|
|
</body>
|
|
</html>
|