-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (42 loc) · 930 Bytes
/
index.html
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
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>mail 2 telegram</title>
<style>
html,
body {
margin-block: 0;
padding-block: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background: linear-gradient(120deg, #141e30, #243b55);
color: aliceblue;
font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, 'Droid Sans', sans-serif;
font-weight: 100;
font-size: 2rem;
min-height: 100vh;
}
h1,
p {
font-weight: 100;
text-align: center;
margin-block: 0;
}
a {
color: #f0f0f0;
}
</style>
<meta name="robots" content="index">
</head>
<body>
<h1>Mail to Telegram</h1>
<p>Simple mail server that sends the content to telegram, <a
href="https://github.com/matst80/go-smtp2telegram">github</a></p>
</body>
</html>