| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Jesus - The Savior</title> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <style> |
| .hero-gradient { |
| background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); |
| } |
| .verse-card { |
| transition: all 0.3s ease; |
| } |
| .verse-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); |
| } |
| .cross-icon { |
| stroke-dasharray: 1000; |
| stroke-dashoffset: 1000; |
| animation: draw 3s ease forwards; |
| } |
| @keyframes draw { |
| to { |
| stroke-dashoffset: 0; |
| } |
| } |
| </style> |
| </head> |
| <body class="font-sans bg-gray-50"> |
| |
| <nav class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="container mx-auto px-6 py-3"> |
| <div class="flex justify-between items-center"> |
| <div class="flex items-center space-x-4"> |
| <i data-feather="cross" class="text-blue-600"></i> |
| <span class="text-xl font-bold text-blue-600">Jesus Christ</span> |
| </div> |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#about" class="text-gray-700 hover:text-blue-600">About</a> |
| <a href="#teachings" class="text-gray-700 hover:text-blue-600">Teachings</a> |
| <a href="#miracles" class="text-gray-700 hover:text-blue-600">Miracles</a> |
| <a href="#verses" class="text-gray-700 hover:text-blue-600">Verses</a> |
| </div> |
| <button class="md:hidden focus:outline-none"> |
| <i data-feather="menu" class="text-gray-700"></i> |
| </button> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section class="hero-gradient text-white py-20"> |
| <div class="container mx-auto px-6 text-center"> |
| <div class="max-w-3xl mx-auto"> |
| <svg class="w-24 h-24 mx-auto mb-6 cross-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> |
| <line x1="12" y1="5" x2="12" y2="19"></line> |
| <line x1="5" y1="12" x2="19" y2="12"></line> |
| </svg> |
| <h1 class="text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Jesus Christ - The Way, The Truth, and The Life</h1> |
| <p class="text-xl mb-8" data-aos="fade-up" data-aos-delay="100"> |
| "For God so loved the world that he gave his one and only Son, that whoever believes in him shall not perish but have eternal life." - John 3:16 |
| </p> |
| <button class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-50 transition duration-300" data-aos="fade-up" data-aos-delay="200"> |
| Learn More |
| </button> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="max-w-4xl mx-auto text-center mb-16"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Who is Jesus?</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div> |
| <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200"> |
| Jesus Christ is the Son of God who came to earth to save humanity from sin. He lived a perfect life, performed miracles, taught about God's kingdom, died on the cross for our sins, and rose again on the third day. |
| </p> |
| </div> |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="bg-blue-50 p-8 rounded-lg shadow-sm" data-aos="fade-up"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6"> |
| <i data-feather="heart" class="text-blue-600"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">God's Love</h3> |
| <p class="text-gray-600"> |
| Jesus demonstrated God's unconditional love through His life, death, and resurrection. |
| </p> |
| </div> |
| <div class="bg-blue-50 p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="100"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6"> |
| <i data-feather="shield" class="text-blue-600"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">Our Savior</h3> |
| <p class="text-gray-600"> |
| Through His sacrifice on the cross, Jesus offers salvation to all who believe in Him. |
| </p> |
| </div> |
| <div class="bg-blue-50 p-8 rounded-lg shadow-sm" data-aos="fade-up" data-aos-delay="200"> |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6"> |
| <i data-feather="clock" class="text-blue-600"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">Coming King</h3> |
| <p class="text-gray-600"> |
| Jesus promised to return and establish His eternal kingdom where there will be no more pain or suffering. |
| </p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="teachings" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="max-w-4xl mx-auto text-center mb-16"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Teachings of Jesus</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div> |
| <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200"> |
| Jesus' teachings revolutionized the world with messages of love, forgiveness, and redemption. |
| </p> |
| </div> |
| <div class="grid md:grid-cols-2 gap-8"> |
| <div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-right"> |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">The Sermon on the Mount</h3> |
| <p class="text-gray-600 mb-4"> |
| Jesus' most famous teaching includes the Beatitudes and the Lord's Prayer. |
| </p> |
| <ul class="space-y-2"> |
| <li class="flex items-start"> |
| <i data-feather="check" class="text-green-500 mr-2 mt-1"></i> |
| <span>"Blessed are the poor in spirit, for theirs is the kingdom of heaven."</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check" class="text-green-500 mr-2 mt-1"></i> |
| <span>"Love your enemies and pray for those who persecute you."</span> |
| </li> |
| <li class="flex items-start"> |
| <i data-feather="check" class="text-green-500 mr-2 mt-1"></i> |
| <span>"Do not store up for yourselves treasures on earth..."</span> |
| </li> |
| </ul> |
| </div> |
| <div class="bg-white p-8 rounded-lg shadow-sm" data-aos="fade-left"> |
| <h3 class="text-xl font-semibold mb-4 text-gray-800">Parables of Jesus</h3> |
| <p class="text-gray-600 mb-4"> |
| Jesus used simple stories to convey profound spiritual truths. |
| </p> |
| <div class="grid grid-cols-2 gap-4"> |
| <div class="bg-blue-50 p-4 rounded"> |
| <h4 class="font-medium text-blue-600">Prodigal Son</h4> |
| <p class="text-sm text-gray-600">God's unconditional forgiveness</p> |
| </div> |
| <div class="bg-blue-50 p-4 rounded"> |
| <h4 class="font-medium text-blue-600">Good Samaritan</h4> |
| <p class="text-sm text-gray-600">Loving your neighbor</p> |
| </div> |
| <div class="bg-blue-50 p-4 rounded"> |
| <h4 class="font-medium text-blue-600">Mustard Seed</h4> |
| <p class="text-sm text-gray-600">Faith's potential</p> |
| </div> |
| <div class="bg-blue-50 p-4 rounded"> |
| <h4 class="font-medium text-blue-600">Lost Sheep</h4> |
| <p class="text-sm text-gray-600">God's pursuit of sinners</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="miracles" class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="max-w-4xl mx-auto text-center mb-16"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Miracles of Jesus</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div> |
| <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200"> |
| Jesus performed many miracles demonstrating His divine power and compassion. |
| </p> |
| </div> |
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm" data-aos="fade-up"> |
| <div class="h-48 bg-blue-100 flex items-center justify-center"> |
| <i data-feather="eye" class="w-16 h-16 text-blue-600"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Healing the Blind</h3> |
| <p class="text-gray-600"> |
| Jesus restored sight to the blind, showing His power over physical and spiritual blindness. |
| </p> |
| </div> |
| </div> |
| <div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="100"> |
| <div class="h-48 bg-blue-100 flex items-center justify-center"> |
| <i data-feather="wind" class="w-16 h-16 text-blue-600"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Calming the Storm</h3> |
| <p class="text-gray-600"> |
| Jesus commanded the winds and waves, demonstrating His authority over nature. |
| </p> |
| </div> |
| </div> |
| <div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm" data-aos="fade-up" data-aos-delay="200"> |
| <div class="h-48 bg-blue-100 flex items-center justify-center"> |
| <i data-feather="users" class="w-16 h-16 text-blue-600"></i> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Feeding the 5000</h3> |
| <p class="text-gray-600"> |
| With five loaves and two fish, Jesus fed a multitude, showing His provision. |
| </p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="verses" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="max-w-4xl mx-auto text-center mb-16"> |
| <h2 class="text-3xl font-bold text-gray-800 mb-4" data-aos="fade-up">Powerful Bible Verses</h2> |
| <div class="w-24 h-1 bg-blue-600 mx-auto mb-8" data-aos="fade-up" data-aos-delay="100"></div> |
| <p class="text-gray-600 text-lg" data-aos="fade-up" data-aos-delay="200"> |
| Words of life, hope, and truth from Jesus and about Jesus. |
| </p> |
| </div> |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up"> |
| <div class="text-blue-600 mb-4"> |
| <i data-feather="book-open" class="inline mr-2"></i> |
| <span class="font-medium">John 14:6</span> |
| </div> |
| <p class="text-gray-700 italic mb-4"> |
| "Jesus answered, 'I am the way and the truth and the life. No one comes to the Father except through me.'" |
| </p> |
| <div class="text-sm text-gray-500">Words of Jesus</div> |
| </div> |
| <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="100"> |
| <div class="text-blue-600 mb-4"> |
| <i data-feather="book-open" class="inline mr-2"></i> |
| <span class="font-medium">Matthew 11:28</span> |
| </div> |
| <p class="text-gray-700 italic mb-4"> |
| "Come to me, all you who are weary and burdened, and I will give you rest." |
| </p> |
| <div class="text-sm text-gray-500">Invitation of Jesus</div> |
| </div> |
| <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="200"> |
| <div class="text-blue-600 mb-4"> |
| <i data-feather="book-open" class="inline mr-2"></i> |
| <span class="font-medium">Romans 5:8</span> |
| </div> |
| <p class="text-gray-700 italic mb-4"> |
| "But God demonstrates his own love for us in this: While we were still sinners, Christ died for us." |
| </p> |
| <div class="text-sm text-gray-500">Paul's Letter</div> |
| </div> |
| <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up"> |
| <div class="text-blue-600 mb-4"> |
| <i data-feather="book-open" class="inline mr-2"></i> |
| <span class="font-medium">Philippians 2:9-11</span> |
| </div> |
| <p class="text-gray-700 italic mb-4"> |
| "Therefore God exalted him to the highest place and gave him the name that is above every name..." |
| </p> |
| <div class="text-sm text-gray-500">Christ's Exaltation</div> |
| </div> |
| <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="100"> |
| <div class="text-blue-600 mb-4"> |
| <i data-feather="book-open" class="inline mr-2"></i> |
| <span class="font-medium">John 1:1,14</span> |
| </div> |
| <p class="text-gray-700 italic mb-4"> |
| "In the beginning was the Word, and the Word was with God, and the Word was God... The Word became flesh and made his dwelling among us." |
| </p> |
| <div class="text-sm text-gray-500">The Incarnation</div> |
| </div> |
| <div class="verse-card bg-white p-6 rounded-lg shadow-sm hover:shadow-md" data-aos="fade-up" data-aos-delay="200"> |
| <div class="text-blue-600 mb-4"> |
| <i data-feather="book-open" class="inline mr-2"></i> |
| <span class="font-medium">Revelation 22:12-13</span> |
| </div> |
| <p class="text-gray-700 italic mb-4"> |
| "Look, I am coming soon! My reward is with me, and I will give to each person according to what they have done. I am the Alpha and the Omega..." |
| </p> |
| <div class="text-sm text-gray-500">Christ's Return</div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 hero-gradient text-white"> |
| <div class="container mx-auto px-6 text-center"> |
| <div class="max-w-2xl mx-auto"> |
| <h2 class="text-3xl font-bold mb-6" data-aos="fade-up">Do You Know Jesus?</h2> |
| <p class="text-xl mb-8" data-aos="fade-up" data-aos-delay="100"> |
| Jesus offers forgiveness, purpose, and eternal life to all who believe in Him. |
| </p> |
| <div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4"> |
| <button class="bg-white text-blue-600 px-6 py-3 rounded-full font-semibold hover:bg-blue-50 transition duration-300" data-aos="fade-up" data-aos-delay="200"> |
| Accept Jesus Today |
| </button> |
| <button class="border-2 border-white text-white px-6 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300" data-aos="fade-up" data-aos-delay="300"> |
| Learn How to Follow Him |
| </button> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-800 text-white py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center space-x-2 mb-4"> |
| <i data-feather="cross" class="text-blue-400"></i> |
| <span class="text-xl font-bold">Jesus Christ</span> |
| </div> |
| <p class="text-gray-400"> |
| Sharing the love and truth of Jesus Christ with the world. |
| </p> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Quick Links</h4> |
| <ul class="space-y-2"> |
| <li><a href="#about" class="text-gray-400 hover:text-white">About Jesus</a></li> |
| <li><a href="#teachings" class="text-gray-400 hover:text-white">His Teachings</a></li> |
| <li><a href="#miracles" class="text-gray-400 hover:text-white">Miracles</a></li> |
| <li><a href="#verses" class="text-gray-400 hover:text-white">Bible Verses</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Resources</h4> |
| <ul class="space-y-2"> |
| <li><a href="#" class="text-gray-400 hover:text-white">Bible Study Tools</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Prayer Guide</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Christian Living</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white">Church Finder</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Connect</h4> |
| <div class="flex space-x-4 mb-4"> |
| <a href="#" class="text-gray-400 hover:text-white"><i data-feather="facebook"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i data-feather="instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i data-feather="youtube"></i></a> |
| </div> |
| <p class="text-gray-400"> |
| Subscribe to our newsletter for updates |
| </p> |
| </div> |
| </div> |
| <div class="border-t border-gray-700 mt-12 pt-8 text-center text-gray-400"> |
| <p>© 2023 Jesus Christ - All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script>AOS.init();</script> |
| <script>feather.replace();</script> |
| <script> |
| |
| document.querySelectorAll('.verse-card').forEach((card, index) => { |
| card.addEventListener('mouseenter', () => { |
| anime({ |
| targets: card, |
| scale: 1.02, |
| duration: 300, |
| easing: 'easeInOutQuad' |
| }); |
| }); |
| card.addEventListener('mouseleave', () => { |
| anime({ |
| targets: card, |
| scale: 1, |
| duration: 300, |
| easing: 'easeInOutQuad' |
| }); |
| }); |
| }); |
| |
| |
| </script> |
| </body> |
| </html> |
|
|