Upload index.html
Browse files- index.html +65 -4
index.html
CHANGED
@@ -3,12 +3,73 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>ReferatAI — Telegram
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
</head>
|
8 |
-
<body
|
9 |
-
<img src="./thumbnail.png"
|
10 |
<h1>📘 ReferatAI</h1>
|
11 |
<p>Telegram-бот, который создаёт готовые рефераты по ГОСТ за несколько минут.</p>
|
12 |
-
<a href="https://t.me/referat_ai_bot"
|
|
|
|
|
13 |
</body>
|
14 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>ReferatAI — Telegram-бот для генерации рефератов</title>
|
7 |
+
<style>
|
8 |
+
body {
|
9 |
+
font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
10 |
+
background: linear-gradient(135deg, #eef2ff, #faf5ff);
|
11 |
+
color: #1e1e2f;
|
12 |
+
margin: 0;
|
13 |
+
padding: 0;
|
14 |
+
display: flex;
|
15 |
+
flex-direction: column;
|
16 |
+
align-items: center;
|
17 |
+
justify-content: center;
|
18 |
+
min-height: 100vh;
|
19 |
+
text-align: center;
|
20 |
+
}
|
21 |
+
|
22 |
+
img {
|
23 |
+
width: 180px;
|
24 |
+
height: 180px;
|
25 |
+
border-radius: 20px;
|
26 |
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
|
27 |
+
margin-bottom: 20px;
|
28 |
+
}
|
29 |
+
|
30 |
+
h1 {
|
31 |
+
font-size: 2.2rem;
|
32 |
+
margin-bottom: 10px;
|
33 |
+
}
|
34 |
+
|
35 |
+
p {
|
36 |
+
font-size: 1.1rem;
|
37 |
+
max-width: 500px;
|
38 |
+
margin: 0 auto 30px;
|
39 |
+
color: #444;
|
40 |
+
}
|
41 |
+
|
42 |
+
a.button {
|
43 |
+
display: inline-block;
|
44 |
+
padding: 14px 28px;
|
45 |
+
background-color: #229ED9;
|
46 |
+
color: white;
|
47 |
+
font-weight: 600;
|
48 |
+
font-size: 1.1rem;
|
49 |
+
border-radius: 50px;
|
50 |
+
text-decoration: none;
|
51 |
+
transition: background 0.25s, transform 0.15s;
|
52 |
+
box-shadow: 0 4px 14px rgba(34, 158, 217, 0.3);
|
53 |
+
}
|
54 |
+
|
55 |
+
a.button:hover {
|
56 |
+
background-color: #178BB8;
|
57 |
+
transform: translateY(-2px);
|
58 |
+
}
|
59 |
+
|
60 |
+
footer {
|
61 |
+
margin-top: 50px;
|
62 |
+
font-size: 0.9rem;
|
63 |
+
color: #777;
|
64 |
+
}
|
65 |
+
</style>
|
66 |
</head>
|
67 |
+
<body>
|
68 |
+
<img src="./thumbnail.png" alt="ReferatAI логотип">
|
69 |
<h1>📘 ReferatAI</h1>
|
70 |
<p>Telegram-бот, который создаёт готовые рефераты по ГОСТ за несколько минут.</p>
|
71 |
+
<a class="button" href="https://t.me/referat_ai_bot" target="_blank" rel="noopener noreferrer">🚀 Перейти к боту</a>
|
72 |
+
|
73 |
+
<footer>© 2025 ReferatAI • Hrodwolf</footer>
|
74 |
</body>
|
75 |
</html>
|