telegram / index.html
CryPanter14's picture
Add 2 files
22647b3 verified
<!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>