Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>President Donald J. Trump - A Legacy of Leadership</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;500&display=swap'); | |
body { | |
font-family: 'Roboto', sans-serif; | |
background-color: #f8f9fa; | |
} | |
.title-font { | |
font-family: 'Playfair Display', serif; | |
} | |
.flag-stripe { | |
height: 10px; | |
} | |
.flag-stripe.red { | |
background-color: #B22234; | |
} | |
.flag-stripe.white { | |
background-color: #FFFFFF; | |
} | |
.blue-section { | |
background-color: #002868; | |
} | |
.gold-accent { | |
color: #FFD700; | |
} | |
.shadow-strong { | |
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3); | |
} | |
.hover-grow { | |
transition: transform 0.3s ease; | |
} | |
.hover-grow:hover { | |
transform: scale(1.03); | |
} | |
.pulse { | |
animation: pulse 2s infinite; | |
} | |
@keyframes pulse { | |
0% { | |
box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); | |
} | |
70% { | |
box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); | |
} | |
100% { | |
box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); | |
} | |
} | |
.bg-pattern { | |
background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); | |
background-size: 20px 20px; | |
} | |
</style> | |
</head> | |
<body class="min-h-screen bg-gray-100"> | |
<!-- American Flag Stripes --> | |
<div class="flex flex-col"> | |
<div class="flag-stripe red"></div> | |
<div class="flag-stripe white"></div> | |
<div class="flag-stripe red"></div> | |
<div class="flag-stripe white"></div> | |
<div class="flag-stripe red"></div> | |
<div class="flag-stripe white"></div> | |
<div class="flag-stripe red"></div> | |
</div> | |
<!-- Main Poster Container --> | |
<div class="container mx-auto px-4 py-8 max-w-6xl"> | |
<!-- Header Section --> | |
<header class="text-center mb-12"> | |
<h1 class="title-font text-5xl md:text-6xl font-bold mb-4 text-gray-900"> | |
<span class="text-blue-800">PRESIDENT</span> | |
<span class="gold-accent">DONALD J. TRUMP</span> | |
</h1> | |
<p class="text-xl md:text-2xl font-medium text-gray-700 italic"> | |
"We will make America great again!" | |
</p> | |
</header> | |
<!-- Hero Section --> | |
<div class="flex flex-col lg:flex-row gap-8 mb-16"> | |
<!-- Trump Portrait --> | |
<div class="lg:w-1/2 relative"> | |
<div class="relative overflow-hidden rounded-xl shadow-strong hover-grow"> | |
<img src="https://upload.wikimedia.org/wikipedia/commons/5/56/Donald_Trump_official_portrait.jpg" | |
alt="President Donald J. Trump" | |
class="w-full h-auto rounded-xl"> | |
<div class="absolute inset-0 bg-gradient-to-t from-blue-900 to-transparent opacity-30 rounded-xl"></div> | |
</div> | |
<div class="absolute -bottom-4 -right-4 bg-white p-3 rounded-full shadow-lg"> | |
<div class="bg-blue-800 text-white p-3 rounded-full pulse"> | |
<i class="fas fa-star fa-2x"></i> | |
</div> | |
</div> | |
</div> | |
<!-- Accomplishments --> | |
<div class="lg:w-1/2 bg-white rounded-xl p-8 shadow-strong hover-grow"> | |
<h2 class="title-font text-3xl font-bold mb-6 text-blue-800 border-b-2 border-gold-500 pb-2"> | |
A Legacy of Leadership | |
</h2> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-chart-line text-blue-800 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-lg text-gray-800">Historic Economic Growth</h3> | |
<p class="text-gray-600">Presided over the strongest economy in American history with record low unemployment for all Americans.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-shield-alt text-blue-800 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-lg text-gray-800">Rebuilt Our Military</h3> | |
<p class="text-gray-600">Invested $2.5 trillion in our armed forces, ensuring American military dominance.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-handshake text-blue-800 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-lg text-gray-800">Historic Peace Deals</h3> | |
<p class="text-gray-600">Brokered the Abraham Accords, bringing peace to the Middle East without wars.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-pills text-blue-800 text-xl"></i> | |
</div> | |
<div> | |
<h3 class="font-bold text-lg text-gray-800">Operation Warp Speed</h3> | |
<p class="text-gray-600">Developed COVID-19 vaccines in record time through private sector partnerships.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Key Achievements Section --> | |
<div class="blue-section rounded-xl p-8 mb-16 shadow-strong bg-pattern relative overflow-hidden"> | |
<div class="absolute inset-0 bg-blue-900 opacity-90"></div> | |
<div class="relative z-10"> | |
<h2 class="title-font text-3xl font-bold mb-8 text-white text-center"> | |
<span class="gold-accent">America First</span> Achievements | |
</h2> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> | |
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg p-6 hover-grow border border-white border-opacity-20"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-dollar-sign gold-accent text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Tax Cuts</h3> | |
<p class="text-gray-200 text-center">Passed the largest tax reform in history, saving average family $2,000/year.</p> | |
</div> | |
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg p-6 hover-grow border border-white border-opacity-20"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-industry gold-accent text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Energy Independence</h3> | |
<p class="text-gray-200 text-center">Made America energy independent for the first time in decades.</p> | |
</div> | |
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg p-6 hover-grow border border-white border-opacity-20"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-gavel gold-accent text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Judicial Reform</h3> | |
<p class="text-gray-200 text-center">Appointed 3 Supreme Court justices and 54 federal appeals court judges.</p> | |
</div> | |
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg p-6 hover-grow border border-white border-opacity-20"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-border-all gold-accent text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Regulation Cuts</h3> | |
<p class="text-gray-200 text-center">Cut more regulations than any administration in history.</p> | |
</div> | |
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg p-6 hover-grow border border-white border-opacity-20"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-hard-hat gold-accent text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Infrastructure</h3> | |
<p class="text-gray-200 text-center">Initiated $1.5 trillion infrastructure plan to rebuild America.</p> | |
</div> | |
<div class="bg-white bg-opacity-10 backdrop-filter backdrop-blur-sm rounded-lg p-6 hover-grow border border-white border-opacity-20"> | |
<div class="text-center mb-4"> | |
<i class="fas fa-user-shield gold-accent text-3xl"></i> | |
</div> | |
<h3 class="text-xl font-bold text-white mb-2 text-center">Border Security</h3> | |
<p class="text-gray-200 text-center">Built over 450 miles of new border wall and reduced illegal crossings.</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Quote Section --> | |
<div class="bg-white rounded-xl p-8 mb-16 shadow-strong hover-grow relative"> | |
<div class="text-center max-w-3xl mx-auto"> | |
<i class="fas fa-quote-left text-gray-300 text-5xl mb-4"></i> | |
<blockquote class="title-font text-2xl md:text-3xl text-gray-800 mb-6"> | |
"The forgotten men and women of our country will be forgotten no longer. From this moment on, it's going to be America First." | |
</blockquote> | |
<p class="text-xl text-gray-600 font-medium">- President Donald J. Trump, Inaugural Address 2017</p> | |
</div> | |
<div class="absolute bottom-0 right-0 bg-blue-800 text-white px-4 py-2 rounded-tl-xl rounded-br-xl"> | |
<i class="fas fa-quote-right mr-2"></i> #MAGA | |
</div> | |
</div> | |
<!-- Call to Action --> | |
<div class="text-center bg-gradient-to-r from-blue-800 to-red-600 rounded-xl p-8 shadow-strong"> | |
<h2 class="title-font text-3xl font-bold mb-4 text-white"> | |
Join the Movement | |
</h2> | |
<p class="text-xl text-gray-200 mb-8 max-w-2xl mx-auto"> | |
America needs strong leadership now more than ever. Stay informed and engaged! | |
</p> | |
<div class="flex flex-col sm:flex-row justify-center gap-4"> | |
<button class="bg-white text-blue-800 font-bold py-3 px-6 rounded-lg hover:bg-gray-100 transition duration-300 flex items-center justify-center"> | |
<i class="fas fa-envelope mr-2"></i> Subscribe | |
</button> | |
<button class="bg-yellow-500 text-gray-900 font-bold py-3 px-6 rounded-lg hover:bg-yellow-400 transition duration-300 flex items-center justify-center"> | |
<i class="fas fa-donate mr-2"></i> Donate | |
</button> | |
<button class="bg-gray-900 text-white font-bold py-3 px-6 rounded-lg hover:bg-gray-800 transition duration-300 flex items-center justify-center"> | |
<i class="fab fa-twitter mr-2"></i> Follow | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white py-8"> | |
<div class="container mx-auto px-4 text-center"> | |
<div class="flex justify-center space-x-6 mb-6"> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-facebook-f fa-lg"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-twitter fa-lg"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-instagram fa-lg"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<i class="fab fa-youtube fa-lg"></i> | |
</a> | |
</div> | |
<p class="text-gray-400 text-sm"> | |
© 2023 America First. All rights reserved. | |
</p> | |
</div> | |
</footer> | |
<!-- JavaScript for interactive elements --> | |
<script> | |
// Simple animation for buttons | |
document.querySelectorAll('button').forEach(button => { | |
button.addEventListener('mousedown', function() { | |
this.style.transform = 'scale(0.98)'; | |
}); | |
button.addEventListener('mouseup', function() { | |
this.style.transform = 'scale(1)'; | |
}); | |
button.addEventListener('mouseleave', function() { | |
this.style.transform = 'scale(1)'; | |
}); | |
}); | |
// Random quote display (could be expanded) | |
const quotes = [ | |
{ | |
text: "We will make America strong again. We will make America proud again. We will make America safe again. And we will make America great again!", | |
source: "Donald J. Trump" | |
}, | |
{ | |
text: "The American Dream is back. Bigger, better and stronger than ever before.", | |
source: "Donald J. Trump" | |
}, | |
{ | |
text: "When you open your heart to patriotism, there is no room for prejudice.", | |
source: "Donald J. Trump" | |
} | |
]; | |
// Rotate quotes every 10 seconds | |
setInterval(() => { | |
const randomQuote = quotes[Math.floor(Math.random() * quotes.length)]; | |
document.querySelector('blockquote').textContent = `"${randomQuote.text}"`; | |
document.querySelector('blockquote + p').textContent = `- ${randomQuote.source}`; | |
}, 10000); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - <a href="https://enzostvs-deepsite.hf.space?remix=real-jiakai/tump-maga-deepseek" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
</html> |