Spaces:
Running
Running
File size: 12,281 Bytes
22647b3 | 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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Telegram — Fast and Secure Messaging</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--tg-blue: #0088cc;
--tg-light: #e6f4ff;
}
body {
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}
.gradient-bg {
background: radial-gradient(circle at 20% 30%, rgba(0, 136, 204, 0.15) 0%, rgba(0, 136, 204, 0) 50%);
}
.btn-primary {
background-color: var(--tg-blue);
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #0077b3;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-white text-gray-800">
<!-- Navigation -->
<nav class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center space-x-2">
<i class="fab fa-telegram text-3xl text-blue-500"></i>
<span class="text-xl font-bold">Telegram</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-gray-600 hover:text-blue-500 transition">Features</a>
<a href="#" class="text-gray-600 hover:text-blue-500 transition">Apps</a>
<a href="#" class="text-gray-600 hover:text-blue-500 transition">API</a>
<a href="#" class="text-gray-600 hover:text-blue-500 transition">FAQ</a>
<a href="#" class="text-gray-600 hover:text-blue-500 transition">Security</a>
<a href="#" class="text-gray-600 hover:text-blue-500 transition">Blog</a>
</div>
<div class="flex items-center space-x-4">
<a href="#" class="text-blue-500 hover:text-blue-600 font-medium">Log In</a>
<a href="#" class="px-4 py-2 rounded-full btn-primary text-white font-medium">Sign Up</a>
</div>
<button class="md:hidden text-gray-600">
<i class="fas fa-bars text-xl"></i>
</button>
</nav>
<!-- Hero Section -->
<section class="gradient-bg">
<div class="container mx-auto px-6 py-20 md:py-32 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-6">Telegram delivers messages faster than any other application.</h1>
<p class="text-lg text-gray-600 mb-8 max-w-lg">Telegram is a cloud-based mobile and desktop messaging app with a focus on security and speed.</p>
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
<button class="px-8 py-3 rounded-full btn-primary text-white font-medium">Download for Free</button>
<button class="px-8 py-3 rounded-full border border-blue-500 text-blue-500 font-medium hover:bg-blue-50 transition">Web Version</button>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://telegram.org/img/t_ipad_anim3.png" alt="Telegram App Preview" class="animate-float max-w-md w-full">
</div>
</div>
</section>
<!-- Apps Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">Apps for all your devices</h2>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<!-- iOS -->
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition text-center">
<i class="fab fa-apple text-5xl text-gray-700 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Telegram for iOS</h3>
<p class="text-gray-600 mb-4">For iPhone, iPad and iPod touch.</p>
<a href="#" class="text-blue-500 font-medium inline-flex items-center">
App Store <i class="fas fa-external-link-alt ml-2 text-xs"></i>
</a>
</div>
<!-- Android -->
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition text-center">
<i class="fab fa-android text-5xl text-green-500 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Telegram for Android</h3>
<p class="text-gray-600 mb-4">For Android phones and tablets.</p>
<a href="#" class="text-blue-500 font-medium inline-flex items-center">
Google Play <i class="fas fa-external-link-alt ml-2 text-xs"></i>
</a>
</div>
<!-- Desktop -->
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition text-center">
<i class="fas fa-desktop text-5xl text-gray-700 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Telegram Desktop</h3>
<p class="text-gray-600 mb-4">For Windows, macOS and Linux.</p>
<a href="#" class="text-blue-500 font-medium inline-flex items-center">
Download <i class="fas fa-external-link-alt ml-2 text-xs"></i>
</a>
</div>
<!-- Web -->
<div class="bg-white rounded-xl p-6 shadow-md hover:shadow-lg transition text-center">
<i class="fas fa-globe text-5xl text-blue-500 mb-4"></i>
<h3 class="text-xl font-bold mb-2">Telegram Web</h3>
<p class="text-gray-600 mb-4">No installation required.</p>
<a href="#" class="text-blue-500 font-medium inline-flex items-center">
Open Web App <i class="fas fa-external-link-alt ml-2 text-xs"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="py-20">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">Powerful Features</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature 1 -->
<div class="feature-card bg-white rounded-xl p-8 shadow-md transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-lock text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Private</h3>
<p class="text-gray-600">Telegram messages are heavily encrypted and can self-destruct.</p>
</div>
<!-- Feature 2 -->
<div class="feature-card bg-white rounded-xl p-8 shadow-md transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-bolt text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Fast</h3>
<p class="text-gray-600">Telegram delivers messages faster than any other application.</p>
</div>
<!-- Feature 3 -->
<div class="feature-card bg-white rounded-xl p-8 shadow-md transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cloud text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Cloud-Based</h3>
<p class="text-gray-600">Telegram lets you access your messages from multiple devices.</p>
</div>
<!-- Feature 4 -->
<div class="feature-card bg-white rounded-xl p-8 shadow-md transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-users text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Groups</h3>
<p class="text-gray-600">Create group chats with up to 200,000 members.</p>
</div>
<!-- Feature 5 -->
<div class="feature-card bg-white rounded-xl p-8 shadow-md transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-robot text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Bots</h3>
<p class="text-gray-600">Powerful bots that get things done, automate tasks and entertain.</p>
</div>
<!-- Feature 6 -->
<div class="feature-card bg-white rounded-xl p-8 shadow-md transition duration-300">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-file-alt text-blue-500 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Files</h3>
<p class="text-gray-600">Send files of any type up to 2GB each and access them anywhere.</p>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-20 bg-blue-500 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl font-bold mb-16">Telegram by the Numbers</h2>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<div class="text-4xl font-bold mb-2">700M+</div>
<div class="text-xl">Monthly Active Users</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">2.5B+</div>
<div class="text-xl">Daily Messages</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">500K+</div>
<div class="text-xl">Active Bots</div>
</div>
<div>
<div class="text-4xl font-bold mb-2">180</div>
<div class="text-xl">Countries Reached</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center mb-16">What People Say About Telegram</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white rounded-xl p-8 shadow-md">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full overflow-hidden mr-4">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="User" class="w-full h-full object-cover">
</div>
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-gray-600 text-sm">Tech Journalist</p>
</div>
</html> |