37 lines
951 B
HTML
37 lines
951 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<meta name="name" content="OCBO e-Sign Server" />
|
|
<meta name="description" content="Backend application for OCBO e-Sign" />
|
|
<meta name="author" content="Patrick Alvin Alcala" />
|
|
<title>OCBO e-Sign Server</title>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #16212c;
|
|
}
|
|
|
|
.title {
|
|
font-family: 'Roboto', sans-serif;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 20px 0;
|
|
color: rgba(255, 255, 255, 0.848);
|
|
font-size: 3.25rem;
|
|
}
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
.title {
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="title">OCBO e-Sign Server is running</h1>
|
|
</body>
|
|
</html>
|