tubesnatch-pro / save-instructions.html
AnonyMouZe88's picture
kannst du mir das nun ausführbar auf meinem PC machen
4f2a68c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TubeSnatch Pro - Installation Instructions</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.glass-effect {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.step-card {
transition: all 0.3s ease;
}
.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
</style>
</head>
<body class="min-h-screen gradient-bg text-white">
<!-- Navigation -->
<nav class="glass-effect py-4 px-6">
<div class="container mx-auto flex justify-between items-center">
<div class="flex items-center space-x-2">
<i data-feather="download-cloud" class="text-2xl"></i>
<h1 class="text-2xl font-bold">TubeSnatch Pro</h1>
</div>
<div class="flex space-x-4">
<a href="index.html" class="hover:text-blue-200 transition">Home</a>
<a href="#" class="hover:text-blue-200 transition">About</a>
<a href="#" class="hover:text-blue-200 transition">Contact</a>
</div>
</div>
</nav>
<!-- Instructions Section -->
<section class="py-16 px-4">
<div class="container mx-auto max-w-4xl">
<h2 class="text-4xl font-bold text-center mb-12">How to Use TubeSnatch Pro on Your PC</h2>
<div class="space-y-8">
<!-- Step 1 -->
<div class="step-card glass-effect rounded-2xl p-8">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-10 h-10 bg-blue-500 rounded-full flex items-center justify-center">
<span class="font-bold">1</span>
</div>
<div>
<h3 class="text-2xl font-bold mb-4">Save the HTML File</h3>
<p class="text-blue-200 mb-4">Right-click on the page and select "Save As" or press Ctrl+S. Save the file as "index.html" on your computer.</p>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="step-card glass-effect rounded-2xl p-8">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-10 h-10 bg-green-500 rounded-full flex items-center justify-center">
<span class="font-bold">2</span>
</div>
<div>
<h3 class="text-2xl font-bold mb-4">Open in Browser</h3>
<p class="text-blue-200 mb-4">Find the saved "index.html" file on your computer and double-click it. It will open automatically in your default web browser.</p>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="step-card glass-effect rounded-2xl p-8">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-10 h-10 bg-purple-500 rounded-full flex items-center justify-center">
<span class="font-bold">3</span>
</div>
<div>
<h3 class="text-2xl font-bold mb-4">Start Downloading</h3>
<p class="text-blue-200 mb-4">Paste any YouTube URL into the input field and click "Fetch Video" to see available download formats.</p>
</div>
</div>
</div>
<!-- Step 4 -->
<div class="step-card glass-effect rounded-2xl p-8">
<div class="flex items-start space-x-4">
<div class="flex-shrink-0 w-10 h-10 bg-yellow-500 rounded-full flex items-center justify-center">
<span class="font-bold">4</span>
</div>
<div>
<h3 class="text-2xl font-bold mb-4">Choose Format & Download</h3>
<p class="text-blue-200 mb-4">Select your preferred format (MP4, MP3, etc.) and click the download button.</p>
</div>
</div>
</div>
</div>
<!-- Quick Start Button -->
<div class="text-center mt-12">
<a href="index.html" class="inline-block bg-gradient-to-r from-blue-500 to-purple-600 hover:from-blue-600 hover:to-purple-700 text-white font-bold py-4 px-8 rounded-xl transition-all duration-300 hover:scale-105">
<i data-feather="play" class="inline w-5 h-5 mr-2"></i>
Launch TubeSnatch Pro
</a>
</div>
</div>
</section>
<!-- System Requirements -->
<section class="py-16 px-4 bg-black/20">
<div class="container mx-auto max-w-4xl">
<h3 class="text-3xl font-bold text-center mb-8">System Requirements</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="glass-effect rounded-xl p-6">
<i data-feather="monitor" class="w-8 h-8 mb-4 text-blue-400"></i>
<h4 class="text-xl font-bold mb-2">Operating System</h4>
<p class="text-blue-200">Windows 10/11, macOS 10.14+, or Linux</h4>
</div>
<div class="glass-effect rounded-xl p-6">
<i data-feather="globe" class="w-8 h-8 mb-4 text-green-400"></i>
<h4 class="text-xl font-bold mb-2">Web Browser</h4>
<p class="text-blue-200">Chrome, Firefox, Safari, Edge (latest versions)</h4>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-8 px-4 glass-effect">
<div class="container mx-auto text-center">
<p class="text-blue-200">&copy; 2024 TubeSnatch Pro. Ready to use on your PC!</p>
</div>
</footer>
<script>
feather.replace();
</script>
</body>
</html>