-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathme.html
83 lines (77 loc) · 2.38 KB
/
me.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Help Bot</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: "Inter", sans-serif;
font-weight: 400;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
text-align: center;
background: #ffffff;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
border-radius: 20px;
padding: 30px;
max-width: 400px;
width: 90%;
}
.container p:first-child {
font-weight: 700;
font-size: 18px;
color: #4a4a4a;
margin-bottom: 10px;
}
.container p {
margin: 10px 0;
font-size: 16px;
color: #4a4a4a;
}
.container a {
color: #007bff;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.container a:hover {
color: #0056b3;
text-decoration: underline;
}
.telegram-widget {
margin: 20px 0;
}
</style>
</head>
<body>
<div class="container">
<p><strong>xxxtfu & TeleDev Technology</strong></p>
<br>
<br>
<div class="telegram-widget">
<script
async src="https://telegram.org/js/telegram-widget.js?22"
data-telegram-login="help_shop_have_bot"
data-size="large"
data-radius="14"
data-auth-url="/myshops/"
data-request-access="write">
</script>
</div>
<br>
<p><a href="https://t.me/help_shop_have_bot">@help_shop_have_bot</a></p>
</div>
</body>
</html>