feat(www): Add retirement information in english
This commit is contained in:
parent
213ec64148
commit
128c969a6c
1 changed files with 73 additions and 0 deletions
73
www/index.html
Normal file
73
www/index.html
Normal file
|
@ -0,0 +1,73 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Retired Web Services</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: white;
|
||||
color: #4a4a4a;
|
||||
padding: 30px;
|
||||
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
section {
|
||||
background-color: #f5f5f5;
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.content {
|
||||
font-size: 1.3rem;
|
||||
/* text-align: left; */
|
||||
padding-left: 5em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #485fc7;
|
||||
cursor: pointer;
|
||||
text-decoration: none;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<section>
|
||||
<div class="container">
|
||||
<h1 class="title">
|
||||
This web service has been retired.
|
||||
</h1>
|
||||
|
||||
<hr>
|
||||
|
||||
<p class="content">
|
||||
Thank you for your interest in our web services.
|
||||
<br>
|
||||
Unfortunately, the service you are looking for has been retired.
|
||||
<br>
|
||||
<br>
|
||||
If you have any questions or need further assistance, please contact us at
|
||||
<br>
|
||||
<b>contact [at] dgnum.eu</b> by e-mail, or <b>#dgnum [at] irc.dgnum.eu</b> on IRC.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in a new issue